-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.92 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 1.92 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
77
78
79
80
81
82
83
84
85
{
"name": "@nanostores/persistent",
"version": "1.3.4",
"description": "A store for Nano Stores state manager to keep data in localStorage",
"keywords": [
"cross-tab",
"localStorage",
"nano",
"persistent",
"preact",
"react",
"store",
"svelte",
"vue"
],
"license": "MIT",
"author": "Andrey Sitnik <andrey@sitnik.es>",
"repository": "nanostores/persistent",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"type": "module",
"sideEffects": false,
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"scripts": {
"test:lint": "oxlint .",
"test:coverage": "pnpm bnt --coverage 100 --coverage-exclude 'test/*'",
"test:types": "check-dts",
"test:size": "size-limit",
"test:build": "vite build ./test/demo",
"test": "pnpm run /^test:/",
"start": "vite ./test/demo"
},
"devDependencies": {
"@logux/oxc-configs": "^0.4.0",
"@size-limit/preset-small-lib": "^12.1.0",
"@types/node": "^25.6.0",
"actions-up": "^1.14.1",
"better-node-test": "^0.8.4",
"check-dts": "^1.0.0",
"clean-publish": "^6.0.5",
"globals": "^17.5.0",
"happy-dom": "^20.9.0",
"multiocular": "^0.8.3",
"nanodelay": "^2.0.2",
"nanostores": "^1.3.0",
"oxlint": "^1.61.0",
"oxlint-tsgolint": "^0.21.1",
"size-limit": "^12.1.0",
"typescript": "^6.0.3",
"vite": "^8.0.9"
},
"peerDependencies": {
"nanostores": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^1.0.0"
},
"size-limit": [
{
"name": "Atom",
"import": {
"./index.js": "{ persistentAtom }"
},
"limit": "291 B"
},
{
"name": "Map",
"import": {
"./index.js": "{ persistentMap }"
},
"limit": "435 B"
}
],
"engines": {
"node": "^20.0.0 || >=22.0.0"
},
"clean-publish": {
"cleanDocs": true
}
}