-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.58 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.58 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
{
"name": "hyperdispatch",
"version": "1.5.1",
"description": "Generate operations/endpoints using Hyperschema",
"main": "index.js",
"files": [
"lib/*.js",
"builder.mjs",
"builder.cjs",
"runtime.mjs",
"runtime.cjs"
],
"imports": {
"path": {
"bare": "bare-path",
"default": "path"
},
"fs": {
"bare": "bare-fs",
"default": "fs"
},
"fs/*": {
"bare": "bare-fs/*",
"default": "fs/*"
}
},
"exports": {
"./package": "./package.json",
".": {
"import": "./builder.mjs",
"require": "./builder.cjs"
},
"./runtime": {
"import": "./runtime.mjs",
"require": "./runtime.cjs"
}
},
"scripts": {
"format": "prettier . --write",
"test": "prettier . --check && brittle test/index.js && npm run example:rebuild",
"example:rebuild": "node example.js && node example.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holepunchto/hyperdispatch.git"
},
"author": "Holepunch",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/holepunchto/hyperdispatch/issues"
},
"homepage": "https://github.com/holepunchto/hyperdispatch#readme",
"devDependencies": {
"brittle": "^3.7.0",
"prettier": "^3.6.2",
"prettier-config-holepunch": "^2.0.0",
"test-tmp": "^1.3.0",
"which-runtime": "^1.3.0"
},
"dependencies": {
"b4a": "^1.6.7",
"bare-fs": "^4.2.3",
"bare-path": "^3.0.0",
"compact-encoding": "^2.16.0",
"generate-string": "^1.0.1",
"hyperschema": "^1.3.2",
"nanoassert": "^2.0.0"
}
}