-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.06 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
{
"name": "@cubux/effector-persistent",
"version": "0.8.0",
"description": "Persist data in effector store.",
"keywords": [
"effector",
"store",
"persist",
"persistent",
"localStorage",
"sessionStorage",
"indexedDB"
],
"author": {
"name": "Vovan-VE",
"email": "vovan-ve@yandex.ru"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cubux-net/effector-persistent.git"
},
"bugs": {
"url": "https://github.com/cubux-net/effector-persistent/issues"
},
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/effector-persistent.esm.js",
"files": [
"dist",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "dts build",
"start": "dts watch",
"prepare": "dts build",
"test": "tsc --noEmit && dts test --passWithNoTests",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage",
"analyze": "size-limit --why",
"lint": "dts lint",
"size": "size-limit"
},
"peerDependencies": {
"@cubux/storage-driver": "^0.4 || ^0.5",
"effector": "^23",
"typescript": "^4 || ^5"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"@cubux/storage-driver": "^0.5.0",
"@size-limit/preset-small-lib": "^11.1.4",
"@tsconfig/recommended": "^1.0.7",
"dts-cli": "^2.0.5",
"effector": "~23.0.0",
"husky": "^8.0.1",
"lint-staged": "^15.2.7",
"size-limit": "^11.1.4",
"tslib": "^2.6.3",
"typescript": "~5.0"
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"size-limit": [
{
"path": "dist/effector-persistent.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/effector-persistent.esm.js",
"limit": "10 KB"
}
]
}