-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.61 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.61 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
{
"name": "@solid-hooks/state",
"type": "module",
"version": "0.1.9",
"description": "global state management for solid-js",
"author": "subframe7536",
"license": "MIT",
"repository": "https://github.com/solid-hooks/state",
"bugs": "https://github.com/solid-hooks/state/issues",
"keywords": [
"typescript"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./persist": {
"import": "./dist/persist.js",
"require": "./dist/persist.cjs"
}
},
"main": "dist/index.js",
"module": "dist/index.cjs",
"typesVersions": {
"*": {
"persist": [
"./dist/persist.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"lint": "tsc --noEmit && eslint . --max-warnings 0",
"dev": "bunx vite serve playground",
"format": "eslint . --fix",
"build": "tsup",
"release": "bun run lint && bun run test && bun run build && bumpp --all && npm publish",
"test": "bunx vitest --run"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"@solid-hooks/persist": "^0.1.1",
"solid-js": "^1.6"
},
"dependencies": {
"klona": "^2.0.6",
"object-path-access": "^4.0.0"
},
"devDependencies": {
"@subframe7536/eslint-config": "^0.9.4",
"@subframe7536/type-utils": "^0.1.6",
"@types/node": "^20.16.10",
"bumpp": "^9.6.1",
"eslint": "^9.11.1",
"jsdom": "^25.0.1",
"solid-js": "^1.9.1",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vite-plugin-solid": "^2.10.2",
"vitest": "^2.1.1"
}
}