-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·76 lines (76 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·76 lines (76 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
73
74
75
76
{
"name": "@fest-lib/subsystem",
"description": "Subsystem services and routing utilities (fest-lib)",
"version": "0.1.0",
"license": "MIT",
"type": "module",
"sideEffects": true,
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fest-live/subsystem.git"
},
"bugs": {
"url": "https://github.com/fest-live/subsystem/issues"
},
"homepage": "https://github.com/fest-live/subsystem#readme",
"keywords": [
"fest",
"fest-lib",
"subsystem",
"routing",
"services"
],
"files": [
"dist",
"LICENSE"
],
"main": "./dist/subsystem.js",
"module": "./dist/subsystem.js",
"exports": {
".": {
"import": "./dist/subsystem.js",
"default": "./dist/subsystem.js"
},
"./package.json": "./package.json"
},
"peerDependencies": {
"@fest-lib/core": "^0.1.0",
"@fest-lib/dom": "^0.1.0",
"@fest-lib/lure": "^0.1.0",
"@fest-lib/object": "^0.1.0",
"@fest-lib/veela": "^0.1.0"
},
"scripts": {
"test": "vite --config vite.dev.config.js --host 0.0.0.0",
"dev": "vite --config vite.dev.config.js --host 0.0.0.0",
"dev:8434": "VIEW_DEV_PORT=8434 vite --config vite.dev.config.js --host 0.0.0.0",
"demo:explorer": "vite --config vite.dev.config.js --host 0.0.0.0",
"watch": "vite build --watch",
"build": "vite build --config vite.config.js && npm run docs && npm run docs:md",
"build:publish": "FEST_NPM_IMPORTS=1 vite build --config vite.config.js",
"prepack": "npm run build:publish",
"preview": "vite preview",
"docs": "typedoc ./src/index.ts --options ./typedoc.json --out ./docs --tsconfig ./tsconfig.json --excludeExternals --excludePrivate --excludeProtected --skipErrorChecking",
"docs:clean": "rm -rf ./docs && typedoc --options ./typedoc.json",
"docs:md": "typedoc --options ./typedoc.md.json",
"docs:md:clean": "rm -rf ./docs-md && typedoc --options ./typedoc.md.json"
},
"devDependencies": {
"@types/node": ">=22.8.1",
"@vitejs/plugin-basic-ssl": "^2.1.0",
"autoprefixer": ">=10.4.20",
"cssnano": ">=7.0.6",
"postcss-discard-duplicates": ">=7.0.1",
"puppeteer": ">=24.42.0",
"sass": ">=1.93.3",
"typescript": ">=6.0.0-beta",
"vite": ">=8.0.10",
"vite-plugin-external": "^6.2.2"
}
}