-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.56 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "hyperscript.org",
"description": "a small scripting language for the web",
"keywords": [
"scripting",
"HTML"
],
"version": "0.9.90",
"type": "module",
"homepage": "https://hyperscript.org/",
"bugs": {
"url": "https://github.com/bigskysoftware/_hyperscript/issues"
},
"license": "BSD 2-Clause",
"files": [
"LICENSE",
"README.md",
"dist/*"
],
"main": "dist/_hyperscript.js",
"module": "dist/_hyperscript.js",
"types": "dist/_hyperscript.d.ts",
"exports": {
".": "./dist/_hyperscript.js",
"./ext/*": "./dist/ext/*"
},
"bin": {
"hyperscript.org": "dist/platform/node-hyperscript.js"
},
"scripts": {
"build": "node build.config.mjs",
"build:watch": "node build.config.mjs --watch",
"test": "playwright test --config test/playwright.config.js --project=chromium",
"test:all": "playwright test --config test/playwright.config.js",
"test:coverage": "COVERAGE=1 playwright test --config test/playwright.config.js --project=chromium",
"dist": "npm run build && npm run typings",
"typings": "npx tsc --declaration dist/_hyperscript.js --allowJs --emitDeclarationOnly --skipLibCheck",
"www": "npm run build && cp -r dist/* www/js/",
"www:search": "cd www && npx @11ty/eleventy && npx pagefind --site _site",
"www:serve": "cd www && npx @11ty/eleventy --serve",
"test:workers": "npx serve . -l 3000 -s & echo 'Open http://localhost:3000/test/manual/workers.html'",
"scratch": "node test/global-setup.js && open test/scratch.html",
"scratch:build": "node test/global-setup.js",
"test:manual": "node test/manual/server.js",
"test:connections": "node test/manual/server.js",
"update-debug-plugin": "npm run build && cp dist/_hyperscript.js debug-plugin/vendor/_hyperscript.js",
"update-sha": "bash scripts/update-sha.sh",
"release-check": "node scripts/release-check.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bigskysoftware/_hyperscript.git"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"@playwright/test": "^1.58.2",
"esbuild": "^0.27.4",
"istanbul-lib-coverage": "^3.2.2",
"istanbul-lib-instrument": "^6.0.3",
"istanbul-lib-report": "^3.0.1",
"istanbul-reports": "^3.2.0",
"markdown-it": "^12.3.2",
"markdown-it-anchor": "^8.4.1",
"markdown-it-attrs": "^4.1.3",
"markdown-it-deflist": "^2.1.0",
"markdown-it-table-of-contents": "^0.6.0",
"pagefind": "^1.4.0",
"serve": "^14.2.6",
"terser": "^5.14.1"
}
}