forked from sinclairzx81/carbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.71 KB
/
package.json
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
89
90
{
"scripts": {
"clean": "hammer task clean",
"format": "hammer task format",
"upgrade": "hammer task upgrade",
"build": "hammer task build",
"start": "hammer task start",
"test": "hammer task test",
"publish": "hammer task publish",
"start:browser": "hammer task start_browser",
"start:bun": "hammer task start_bun",
"start:deno": "hammer task start_deno",
"start:node": "hammer task start_node",
"test:browser": "hammer task test_browser",
"test:bun": "hammer task test_bun",
"test:deno": "hammer task test_deno",
"test:node": "hammer task test_node",
"browser": "npm run start:browser",
"bun": "npm run start:bun",
"deno": "npm run start:deno",
"node": "npm run start:node"
},
"name": "@sinclair/carbon",
"version": "0.8.3",
"description": "Compatibility Layer for Node Deno and Bun",
"keywords": [
"node",
"deno",
"bun",
"net",
"http",
"websocket",
"fs",
"process",
"crypto"
],
"author": "sinclairzx81",
"license": "MIT",
"main": "./index.mjs",
"types": "./index.d.ts",
"type": "module",
"exports": {
"./ansi": "./ansi/index.mjs",
"./assert": "./assert/index.mjs",
"./async": "./async/index.mjs",
"./benchmark": "./benchmark/index.mjs",
"./buffer": "./buffer/index.mjs",
"./channel": "./channel/index.mjs",
"./config": "./config/index.mjs",
"./crypto": "./crypto/index.mjs",
"./dispose": "./dispose/index.mjs",
"./dns": "./dns/index.mjs",
"./encoding": "./encoding/index.mjs",
"./events": "./events/index.mjs",
"./fs": "./fs/index.mjs",
"./http": "./http/index.mjs",
"./mime": "./mime/index.mjs",
"./net": "./net/index.mjs",
"./os": "./os/index.mjs",
"./path": "./path/index.mjs",
"./performance": "./performance/index.mjs",
"./process": "./process/index.mjs",
"./qs": "./qs/index.mjs",
"./runtime": "./runtime/index.mjs",
"./stream": "./stream/index.mjs",
"./test": "./test/index.mjs",
"./type": "./type/index.mjs",
"./type/compiler": "./type/compiler/index.mjs",
"./url": "./url/index.mjs",
"./value": "./value/index.mjs",
"./worker": "./worker/index.mjs",
".": "./index.mjs"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.0",
"@sinclair/drift": "^0.9.0",
"@sinclair/hammer": "^0.18.0",
"@types/node": "^20.8.2",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@types/ws": "^8.5.4",
"prettier": "^2.8.7",
"typescript": "^5.4.2"
},
"dependencies": {
"@msgpack/msgpack": "^3.0.0-beta2",
"@sinclair/typebox": "^0.32.15",
"ws": "^8.16.0"
}
}