-
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.24 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.24 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.2",
"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.7",
"@types/node": "25.3.5",
"@zenstackhq/client-helpers": "3.4.6",
"@zenstackhq/common-helpers": "3.4.6",
"@zenstackhq/orm": "3.4.6",
"@zenstackhq/schema": "3.4.6",
"eslint": "10.0.3",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"happy-dom": "20.8.3",
"pinia": "3.0.4",
"prettier": "3.8.1",
"tsdown": "0.21.4",
"typescript": "5.9.3",
"vitest": "4.0.18",
"vue": "3.5.30"
},
"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.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017"
}