-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.25 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.25 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "zenstack-pinia-colada",
"version": "0.2.0",
"description": "Pinia Colada Client for consuming ZenStack v3's CRUD service",
"keywords": [
"data-fetching",
"fullstack",
"orm",
"pinia",
"pinia-colada",
"vue",
"zenstack"
],
"homepage": "https://github.com/genu/zenstack-pinia-colada#readme",
"bugs": {
"url": "https://github.com/genu/zenstack-pinia-colada/issues"
},
"license": "MIT",
"author": "ZenStack Team",
"repository": {
"type": "git",
"url": "https://github.com/genu/zenstack-pinia-colada.git"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"watch": "tsdown --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:typecheck": "tsc --noEmit --project test/tsconfig.json",
"test:all": "pnpm test && pnpm test:typecheck",
"prepublishOnly": "pnpm run build",
"prepack": "pnpm run build"
},
"devDependencies": {
"@pinia/colada": "^0.21.1",
"@types/node": "^25.0.9",
"@zenstackhq/client-helpers": "3.2.1",
"@zenstackhq/common-helpers": "3.2.1",
"@zenstackhq/orm": "3.2.1",
"@zenstackhq/schema": "3.2.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"happy-dom": "^20.3.1",
"pinia": "^3.0.4",
"prettier": "^3.8.0",
"tsdown": "^0.20.0",
"typescript": "^5.9.3",
"vitest": "^4.0.17",
"vue": "^3.5.26"
},
"peerDependencies": {
"@pinia/colada": ">=0.10.0 <1.0.0",
"@zenstackhq/client-helpers": "^3.0.0",
"@zenstackhq/common-helpers": "^3.0.0",
"@zenstackhq/orm": "^3.0.0",
"@zenstackhq/schema": "^3.0.0",
"pinia": "^3.0.0",
"vue": "^3.0.0"
},
"packageManager": "pnpm@10.21.0+sha512.da3337267e400fdd3d479a6c68079ac6db01d8ca4f67572083e722775a796788a7a9956613749e000fac20d424b594f7a791a5f4e2e13581c5ef947f26968a40"
}