-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 925 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 925 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
{
"name": "@protobuf-orm/runtime",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -p ./tsconfig.build.json && vite build",
"check": "biome check --write",
"test": "vitest"
},
"workspaces": [
"examples"
],
"exports": {
".": {
"import": "./dist/index.es.js",
"types": "./dist/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"@connectrpc": [
"./dist/@connectrpc/index.d.ts"
],
"@protobuf-ts": [
"./dist/@protobuf-ts/index.d.ts"
]
}
},
"devDependencies": {
"@biomejs/biome": "2.3.2",
"@bufbuild/protobuf": "^2.10.0",
"@bufbuild/protoc-gen-es": "^2.10.0",
"@types/node": "^24.10.0",
"fake-indexeddb": "^6.2.4",
"tsx": "^4.20.6",
"vite": "^7.1.12",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.5",
"zx": "^8.8.5"
},
"dependencies": {
"@connectrpc/connect": "^2.1.0",
"dexie": "^4.2.1"
}
}