forked from nanostores/nanostores
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.43 KB
/
package.json
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "nanostores",
"version": "0.10.3",
"description": "A tiny (286 bytes) state manager for React/Preact/Vue/Svelte with many atomic tree-shakable stores",
"keywords": [
"store",
"state",
"state manager",
"react",
"react native",
"preact",
"vue",
"svelte"
],
"scripts": {
"test:lint": "eslint .",
"test:coverage": "c8 pnpm bnt",
"test:types": "check-dts",
"test:size": "size-limit",
"test": "pnpm run /^test:/"
},
"author": "Andrey Sitnik <andrey@sitnik.ru>",
"license": "MIT",
"repository": "nanostores/nanostores",
"sideEffects": false,
"type": "module",
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"devDependencies": {
"@logux/eslint-config": "^53.0.1",
"@sinonjs/fake-timers": "^11.2.2",
"@size-limit/preset-small-lib": "^11.1.2",
"@types/node": "^20.12.7",
"@types/sinonjs__fake-timers": "^8.1.5",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"benchmark": "^2.1.4",
"better-node-test": "^0.5.1",
"c8": "^9.1.0",
"check-dts": "^0.7.2",
"clean-publish": "^4.4.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.3.1",
"eslint-plugin-node-import": "^1.0.4",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.1.1",
"nanodelay": "^2.0.2",
"size-limit": "^11.1.2",
"tsx": "^4.7.2",
"typescript": "^5.4.5"
},
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"c8": {
"exclude": [
"deprecated",
"**/*.test.*"
],
"lines": 100,
"check-coverage": true,
"reporter": [
"text",
"lcov"
],
"skip-full": true,
"clean": true
},
"size-limit": [
{
"name": "Atom",
"import": {
"./index.js": "{ atom }"
},
"limit": "286 B"
},
{
"name": "Popular Set",
"import": {
"./index.js": "{ map, computed, }"
},
"limit": "818 B"
}
],
"clean-publish": {
"cleanDocs": true
}
}