-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.1 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
{
"name": "effector-storage-extras",
"description": "Extra adapters for effector-storage package",
"version": "0.0.0",
"author": "Victor Didenko <[email protected]> (https://yumaa.name)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yumauri/effector-storage-extras.git"
},
"bugs": {
"url": "https://github.com/yumauri/effector-storage-extras/issues"
},
"homepage": "https://github.com/yumauri/effector-storage-extras",
"keywords": [
"effector",
"persist",
"storage"
],
"type": "module",
"private": true,
"scripts": {
"build": "pnpm run -r build",
"check:lint": "pnpm run -r check:lint",
"check:types": "pnpm run -r check:types",
"check:format": "pnpm run -r check:format",
"//check:spell": "pnpm run -r check:spell",
"lint": "pnpm run -r lint",
"publint": "pnpm run -r publint",
"format": "pnpm run -r format",
"test": "vitest run --coverage",
"size": "pnpm run -r size"
},
"dependencies": {
"effector": "^23.2.3",
"effector-storage": "^7.1.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-block-scoping": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.15.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@size-limit/preset-small-lib": "^11.1.6",
"@types/eslint__js": "^8.42.3",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"rollup": "^4.27.4",
"rollup-plugin-command": "^1.1.3",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-generate-package-json": "^3.2.0",
"size-limit": "^11.1.6",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0",
"vitest": "^2.1.5"
},
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
},
"overrides": {
"is-core-module": "npm:@nolyfill/is-core-module@^1"
}
}
}