-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.57 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
{
"name": "yaasl",
"version": "0.11.0-alpha.1",
"description": "yet another atomic store library",
"author": "PrettyCoffee",
"homepage": "https://github.com/PrettyCoffee/yaasl",
"license": "MIT",
"workspaces": [
"packages/utils",
"packages/core",
"packages/devtools",
"packages/react",
"packages/preact",
"demo/*",
"docs/"
],
"scripts": {
"build": "npm run build --workspaces",
"test": "vitest run",
"test:coverage": "npm run test -- --coverage",
"test:watch": "vitest watch",
"lint": "npx eslint . --ext .ts,.tsx,.js --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"validate": "npm run validate --workspaces",
"docs": "npm run -w docs start",
"docs:publish": "npm run -w docs publish",
"docs:generate": "node ./scripts/generateDocs.js",
"prepare": "cozy-git-hooks install -q",
"release": "node ./scripts/release.js",
"upgrade": "ncu --deep -u -t minor -f !@yaasl/*",
"upgrade:latest": "npm run upgrade -- -t latest"
},
"devDependencies": {
"@pretty-cozy/eslint-config": "^0.4.0",
"@pretty-cozy/git-hooks": "^0.4.0",
"@pretty-cozy/release-tools": "^0.4.0",
"@vitest/coverage-v8": "^1.6.0",
"enquirer": "^2.4.1",
"eslint-import-resolver-exports": "^1.0.0-beta.5",
"gh-pages": "^6.2.0",
"glob": "^10.4.5",
"jsdom": "^24.1.3",
"npm-check-updates": "^16.14.20",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.10",
"typescript": "^5.6.3",
"vitest": "^1.6.0"
},
"lint-staged": {
"*.{json,md,html}": [
"prettier --write"
]
}
}