-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.56 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.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
{
"name": "@solid-hooks/persist",
"type": "module",
"version": "0.1.2",
"description": "persist signal or store to storage for solid-js",
"author": "subframe7536",
"license": "MIT",
"repository": "https://github.com/solid-hooks/storage",
"bugs": "https://github.com/solid-hooks/storage/issues",
"keywords": [
"typescript"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "dist/index.js",
"module": "dist/index.cjs",
"files": [
"dist"
],
"scripts": {
"lint": "tsc --noEmit && eslint . --max-warnings 0 --fix",
"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": {
"idb-keyval": "^6.2.1",
"solid-js": "^1.6"
},
"dependencies": {
"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.12.0",
"idb-keyval": "^6.2.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.2"
}
}