-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.79 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
{
"name": "@nanostores/svelte-runes",
"version": "1.0.1",
"description": "Svelte 5 runes integration for Nano Stores, a tiny state manager with many atomic tree-shakable stores",
"keywords": [
"svelte",
"runes",
"state",
"state manager",
"store"
],
"license": "MIT",
"author": "Firat Ciftci <2052855+firatciftci@users.noreply.github.com>",
"repository": "nanostores/svelte-runes",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"type": "module",
"sideEffects": false,
"types": "./index.d.ts",
"svelte": "./index.js",
"exports": {
".": {
"types": "./index.d.ts",
"svelte": "./index.js",
"default": "./index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"test:lint": "oxlint .",
"test:coverage": "vitest run --coverage",
"test:types": "check-dts",
"test:size": "size-limit",
"test": "pnpm run /^test:/"
},
"devDependencies": {
"@logux/oxc-configs": "^0.4.0",
"@size-limit/preset-small-lib": "^12.1.0",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@types/node": "^26.0.1",
"@vitest/coverage-v8": "^4.0.18",
"actions-up": "^1.14.3",
"check-dts": "^1.0.0",
"happy-dom": "^20.10.6",
"nanodelay": "^2.0.2",
"nanostores": "^1.3.0",
"oxlint": "^1.71.0",
"oxlint-tsgolint": "^0.23.0",
"size-limit": "^12.1.0",
"svelte": "^5.43.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"peerDependencies": {
"nanostores": "^1.2.0",
"svelte": ">=5.7.0"
},
"size-limit": [
{
"import": {
"index.js": "{ useStore }",
"nanostores": "{ map, computed }"
},
"limit": "1 KB"
}
],
"engines": {
"node": ">=22.0.0"
}
}