-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.01 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.01 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
{
"name": "preact-sigma",
"version": "4.0.0",
"keywords": [],
"license": "MIT",
"author": "Alec Larson",
"repository": {
"type": "git",
"url": "https://github.com/alloc/preact-sigma.git"
},
"files": [
"dist",
"docs",
"examples"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "tsdown",
"test": "vitest run",
"typecheck": "tsc --noEmit --allowImportingTsExtensions",
"fmt": "oxfmt",
"lint": "oxlint",
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@preact/preset-vite": "^2.10.5",
"@types/node": "^25.5.0",
"jsdom": "^29.0.1",
"lucide-react": "^1.6.0",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"preact-sigma": "link:",
"tsdown": "^0.21.4",
"typescript": "^6.0.2",
"vite": "^8.0.2",
"vitest": "^4.1.1"
},
"peerDependencies": {
"@preact/signals": ">=2",
"immer": ">=11",
"preact": ">=10"
}
}