-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.06 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
84
85
86
87
88
{
"name": "@naeemo/capnp",
"version": "0.9.3",
"description": "Pure TypeScript Cap'n Proto implementation with RPC support",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./compat": {
"types": "./dist/compat/index.d.ts",
"import": "./dist/compat/index.js"
}
},
"files": [
"dist",
"README.md",
"README.zh.md",
"LICENSE"
],
"bin": {
"capnp": "./dist/cli.js"
},
"scripts": {
"build": "rolldown -c rolldown.config.ts",
"dev": "rolldown -c rolldown.config.ts --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run lint && npm run typecheck && npm run build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"keywords": [
"capnp",
"capnproto",
"serialization",
"typescript"
],
"author": "Naeemo <naeemo@qq.com>",
"contributors": [
"Naeemo <naeemo@qq.com>",
"Kimi"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Naeemo/capnp.git"
},
"bugs": {
"url": "https://github.com/Naeemo/capnp/issues"
},
"homepage": "https://github.com/Naeemo/capnp#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.19.13",
"@types/ws": "^8.5.14",
"@vitest/coverage-v8": "^3.2.7",
"glob": "^10.5.0",
"lz4js": "^0.2.0",
"protobufjs": "^7.4.0",
"rolldown": "1.0.0-rc.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitepress": "^1.6.4",
"vitest": "^3.2.7",
"ws": "^8.18.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.15.0",
"pnpm": {
"overrides": {
"esbuild": ">=0.25.0"
}
}
}