-
Notifications
You must be signed in to change notification settings - Fork 115
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.49 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.49 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
{
"name": "capnweb",
"version": "0.2.0",
"description": "JavaScript/TypeScript-native RPC library with Promise Pipelining",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Kenton Varda <kenton@cloudflare.com>",
"license": "MIT",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": {
"workerd": "./dist/index-workers.js",
"default": "./dist/index.js"
},
"require": {
"workerd": "./dist/index-workers.cjs",
"default": "./dist/index.cjs"
}
}
},
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup --format esm,cjs",
"build:watch": "tsup --watch --format esm,cjs",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@cloudflare/vitest-pool-workers": "^0.10.4",
"@cloudflare/workers-types": "^4.20251014.0",
"@types/ws": "^8.18.1",
"@vitest/browser": "^3.2.4",
"pkg-pr-new": "^0.0.60",
"playwright": "^1.56.1",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4",
"ws": "^8.18.3"
},
"repository": {
"type": "git",
"url": "https://github.com/cloudflare/capnweb"
},
"bugs": {
"url": "https://github.com/cloudflare/capnweb/issues"
},
"homepage": "https://github.com/cloudflare/capnweb#readme"
}