-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.06 KB
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
{
"name": "query-kit",
"private": true,
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "git config core.hooksPath .githooks",
"dev": "npm run dev -w @query-kit/vue",
"build": "npm run build -w @query-kit/vue",
"build:playground": "npm run build:playground -w @query-kit/vue",
"preview": "npm run preview -w @query-kit/vue",
"test:unit": "npm run test:unit -w @query-kit/vue",
"test:coverage": "npm run test:coverage -w @query-kit/vue",
"type-check": "npm run type-check -w @query-kit/vue",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"check": "npm run check -w @query-kit/vue",
"version:patch": "node scripts/version.mjs patch",
"version:minor": "node scripts/version.mjs minor",
"version:major": "node scripts/version.mjs major"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.7.0",
"eslint-plugin-vue": "^10.6.2",
"globals": "^17.7.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0"
}
}