-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.26 KB
/
package.json
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
{
"name": "@zeix/ui-element",
"version": "0.10.0",
"description": "UIElement - minimal reactive framework based on Web Components",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build:prod": "bun build index.ts --outdir ./ --minify --define process.env.DEV_MODE=false",
"build:dev": "BUN_ENV=development bun build index.dev.ts --outdir ./ --define process.env.DEV_MODE=true",
"build": "bun run build:prod && bun run build:dev && bunx tsc && bun run lint",
"build:docs-js": "bun build docs-src/main.ts --outdir ./docs/assets/ --minify",
"build:docs-css": "lightningcss --minify --bundle --targets \">= 0.25%\" docs-src/main.css -o ./docs/assets/main.css",
"build:docs-html": "bun ./docs-src/server/generate-pages.ts & bun ./docs-src/server/generate-fragments.ts",
"build:docs": "bun run build:docs-js & bun run build:docs-css & bun run build:docs-html",
"serve:docs": "bun run build:docs & bun ./docs-src/server/serve-docs.ts",
"lint": "bunx eslint src/",
"test": "bun run test:setup && bun run test:ci",
"test:setup": "playwright install-deps",
"test:ci": "web-test-runner \"test/*-test.html\" --node-resolve --playwright --browsers chromium firefox webkit",
"test:watch": "BUN_ENV=development web-test-runner \"test/*-test.html\" --node-resolve --watch --playwright --browsers chromium firefox webkit"
},
"keywords": [
"UIElement",
"Web Components",
"Custom Elements",
"Reactivity",
"States",
"Signals",
"Effects",
"UI Accessors"
],
"author": "Esther Brunner",
"license": "MIT",
"type": "module",
"devDependencies": {
"@eslint/js": "^9.20.0",
"@esm-bundle/chai": "^4.3.4-fix.0",
"@types/bun": "^1.2.2",
"@types/eslint__js": "^8.42.3",
"@web/test-runner": "^0.19.0",
"@web/test-runner-playwright": "^0.11.0",
"@zeix/ui-element": "^0.10.0",
"dotenv": "^16.4.7",
"eslint": "^9.20.1",
"globals": "^15.15.0",
"gray-matter": "^4.0.3",
"lightningcss-cli": "^1.29.1",
"marked": "^15.0.7",
"playwright": "^1.50.1",
"prismjs": "^1.29.0",
"shiki": "^2.3.2",
"typescript-eslint": "^8.24.0"
},
"peerDependencies": {
"typescript": "^5.6.2"
},
"dependencies": {
"@zeix/cause-effect": "^0.9.7",
"@zeix/pulse": "^0.9.3"
}
}