-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·66 lines (66 loc) · 2.07 KB
/
package.json
File metadata and controls
executable file
·66 lines (66 loc) · 2.07 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
{
"name": "@fest-lib/object",
"description": "Reactive object utilities and helpers (fest-lib)",
"version": "0.1.0",
"license": "MIT",
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fest-live/object.ts.git"
},
"bugs": {
"url": "https://github.com/fest-live/object.ts/issues"
},
"homepage": "https://github.com/fest-live/object.ts#readme",
"keywords": [
"fest",
"fest-lib",
"reactivity",
"observable",
"typescript"
],
"files": [
"dist",
"LICENSE"
],
"main": "./dist/object.js",
"module": "./dist/object.js",
"exports": {
".": {
"import": "./dist/object.js",
"default": "./dist/object.js"
},
"./package.json": "./package.json"
},
"peerDependencies": {
"@fest-lib/core": "^0.1.0"
},
"scripts": {
"test": "vite --host 0.0.0.0",
"dev": "vite --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",
"typescript": ">=6.0.0-beta",
"vite": "^8.0.7",
"vite-plugin-dynamic-import": ">=1.6.0",
"vite-plugin-external": ">=6.2.2",
"vite-plugin-optimizer": ">=1.4.3"
}
}