-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.5 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.5 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
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
{
"name": "zero-vue",
"type": "module",
"version": "0.7.1",
"packageManager": "pnpm@10.30.3",
"description": "",
"license": "MIT",
"repository": "danielroe/zero-vue",
"sideEffects": false,
"exports": {
".": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint .",
"prepare": "simple-git-hooks",
"prepack": "pnpm build",
"prepublishOnly": "pnpm lint && pnpm test",
"release": "bumpp",
"test": "pnpm test:unit && pnpm test:types",
"test:unit": "vitest",
"test:types": "tsc --noEmit && pnpm -r test:types"
},
"peerDependencies": {
"vue": "^3.5.13"
},
"dependencies": {
"@rocicorp/zero": "^0.25.1"
},
"devDependencies": {
"@antfu/eslint-config": "latest",
"@rocicorp/resolver": "1.0.2",
"@vitest/coverage-v8": "latest",
"bumpp": "latest",
"changelogithub": "14.0.0",
"eslint": "latest",
"installed-check": "latest",
"knip": "latest",
"nano-staged": "0.9.0",
"simple-git-hooks": "latest",
"typescript": "latest",
"unbuild": "latest",
"vitest": "latest",
"vue": "3.5.29",
"zod": "4.3.6"
},
"resolutions": {
"zero-vue": "link:."
},
"simple-git-hooks": {
"pre-commit": "npx nano-staged"
},
"nano-staged": {
"*.{js,ts,mjs,cjs,json,.*rc}": [
"npx eslint --fix"
]
}
}