-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
90 lines (90 loc) · 3.11 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
{
"name": "effector-storage",
"description": "Module for Effector to sync stores with different storages",
"version": "7.1.0",
"author": "Victor Didenko <[email protected]> (https://yumaa.name)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yumauri/effector-storage.git"
},
"bugs": {
"url": "https://github.com/yumauri/effector-storage/issues"
},
"homepage": "https://github.com/yumauri/effector-storage#readme",
"keywords": [
"effector",
"persist",
"storage",
"localstorage",
"local storage",
"sessionstorage",
"session storage"
],
"scripts": {
"build": "NODE_ENV=production rollup --config",
"build:dev": "rollup --config",
"check:lint": "eslint src",
"check:types": "tsc --noEmit",
"check:format": "prettier --check src",
"lint": "pnpm run /^check:/",
"publint": "publint build",
"format": "prettier --write src tests",
"test": "pnpm run /^test:/",
"test:node": "c8 --src=src --all --include=**/*.ts --include=!src/types.ts --reporter=lcov --reporter=text uvu -r ts-node/register -i mock -i types tests",
"test:types": "uvu -r ts-node/register tests types",
"test-try": "node -e \"console.log('Installed effector version:', require('effector').version)\" && pnpm run /^test-try:/",
"test-try:node": "uvu -r esbuild-register -i mock -i types tests",
"test-try:types": "uvu -r ts-node/register tests types",
"test-one": "uvu -r ts-node/register -i mock -i types tests",
"e2e": "playwright test",
"e2e:server": "vite build -c e2e/empty-app/vite.config.mts && vite preview -c e2e/empty-app/vite.config.mts",
"doc:update-readme": "npx doctoc --maxlevel 3 README.md",
"clean": "rm -rf build coverage",
"size": "size-limit --highlight-less"
},
"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",
"@farfetched/core": "^0.12.8",
"@farfetched/runtypes": "^0.12.8",
"@playwright/test": "^1.49.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@sinonjs/fake-timers": "^13.0.5",
"@size-limit/preset-small-lib": "^11.1.6",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.9.3",
"@types/sinonjs__fake-timers": "^8.1.5",
"c8": "^10.1.2",
"effector": "^23.2.3",
"esbuild-register": "^3.6.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"patronum": "^2.3.0",
"prettier": "^3.3.3",
"publint": "^0.2.12",
"rollup": "^4.27.4",
"rollup-plugin-command": "^1.1.3",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-generate-package-json": "^3.2.0",
"runtypes": "^6.7.0",
"size-limit": "^11.1.6",
"snoop": "^1.0.4",
"ts-node": "^10.9.2",
"tsd": "^0.31.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0",
"uvu": "^0.5.6",
"vite": "^5.4.11"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"is-core-module": "npm:@nolyfill/is-core-module@^1"
}
}
}