forked from nanostores/nanostores
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 2.87 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "nanostores",
"version": "0.7.3",
"description": "A tiny (334 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": {
"unit": "tsm node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
"test": "c8 pnpm unit && eslint . && check-dts && size-limit"
},
"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": "^14.0.0 || ^16.0.0 || >=18.0.0"
},
"devDependencies": {
"@logux/eslint-config": "^48.0.0",
"@sinonjs/fake-timers": "^10.0.2",
"@size-limit/preset-small-lib": "^8.1.2",
"@types/jsdom": "^20.0.1",
"@types/node": "^18.11.18",
"@types/sinonjs__fake-timers": "^8.1.2",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"benchmark": "^2.1.4",
"c8": "^7.12.0",
"check-dts": "^0.6.7",
"clean-publish": "^4.1.1",
"eslint": "^8.33.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.1.1",
"nanodelay": "^2.0.2",
"size-limit": "^8.1.2",
"tsm": "^2.3.0",
"typescript": "^4.9.5",
"uvu": "^0.5.6"
},
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"c8": {
"exclude": [
"deprecated",
"**/*.test.*"
],
"lines": 100,
"reporter": "lcov",
"check-coverage": true
},
"eslintConfig": {
"extends": "@logux/eslint-config/esm",
"rules": {
"@typescript-eslint/unified-signatures": "off",
"@typescript-eslint/no-explicit-any": "off",
"symbol-description": "off",
"consistent-return": "off",
"camelcase": "off"
},
"overrides": [
{
"files": "deprecated/index.js",
"rules": {
"no-console": "off"
}
}
],
"globals": {
"jsdom": false
}
},
"eslintIgnore": [
"**/errors.ts"
],
"size-limit": [
{
"name": "Atom",
"import": {
"./index.js": "{ atom }"
},
"limit": "334 B"
},
{
"name": "Map Template",
"import": {
"./index.js": "{ mapTemplate }"
},
"limit": "771 B"
},
{
"name": "All",
"import": {
"./index.js": "{ mapTemplate, computed, action, actionFor }"
},
"limit": "1064 B"
}
],
"clean-publish": {
"cleanDocs": true
}
}