-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "webvh-ts",
"module": "dist/esm/index.js",
"type": "module",
"version": "0.0.17",
"main": "dist/cjs/index.cjs",
"browser": "dist/browser/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/cjs",
"dist/esm",
"dist/browser",
"dist/types",
"dist/cli"
],
"scripts": {
"dev": "bun --watch --inspect-wait ./src/resolver.ts",
"server": "bun --watch ./src/resolver.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"test:bail": "bun test --watch --bail --verbose",
"test:log": "mkdir -p ./test/logs && LOG_RESOLVES=true bun test &> ./test/logs/test-run.txt",
"cli": "bun src/cli.ts",
"build": "bun run scripts/build.ts",
"build:clean": "rm -rf dist",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"@types/bun": "^1.1.14",
"bun-bagel": "^1.1.0",
"bun-types": "latest"
},
"peerDependencies": {
"typescript": "^5.4.5"
},
"dependencies": {
"@noble/curves": "^1.6.0",
"@noble/ed25519": "^2.1.0",
"bs58": "^6.0.0",
"elysia": "^0.8.17",
"json-canonicalize": "^1.0.6",
"multiformats": "^13.3.1",
"nanoid": "^5.0.8"
},
"bin": {
"didwebvh": "./dist/cli/didwebvh.js"
},
"exports": {
".": {
"browser": "./dist/browser/index.js",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
}
}
}