-
-
Notifications
You must be signed in to change notification settings - Fork 141
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1011 Bytes
/
package.json
File metadata and controls
52 lines (52 loc) · 1011 Bytes
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
{
"name": "@orpc/vue-colada",
"type": "module",
"version": "1.4.5",
"license": "MIT",
"homepage": "https://orpc.unnoq.com",
"repository": {
"type": "git",
"url": "git+https://github.com/unnoq/orpc.git",
"directory": "packages/vue-colada"
},
"keywords": [
"unnoq",
"orpc",
"vue",
"vue-colada",
"pinia-colada",
"tanstack"
],
"publishConfig": {
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
}
}
},
"exports": {
".": "./src/index.ts"
},
"files": [
"dist"
],
"scripts": {
"build:watch": "pnpm run build --watch",
"type:check": "tsc -b"
},
"peerDependencies": {
"@pinia/colada": ">=0.16.0",
"vue": ">=3.3.0"
},
"dependencies": {
"@orpc/client": "workspace:*",
"@orpc/shared": "workspace:*"
},
"devDependencies": {
"@pinia/colada": "^0.17.0",
"pinia": "^3.0.2",
"vue": "^3.5.16"
}
}