-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.92 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.92 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
{
"name": "didwebvh-ts",
"module": "dist/esm/index.js",
"type": "module",
"version": "2.7.4",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/decentralized-identity/didwebvh-ts.git"
},
"react-native": "dist/cjs/index.cjs",
"main": "dist/cjs/index.cjs",
"browser": "dist/browser/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"dev": "bun --watch --inspect-wait ./examples/elysia-resolver.ts",
"server": "bun --watch ./examples/elysia-resolver.ts",
"test": "NODE_ENV=test rm -rf ./test/logs/** && bun test",
"test:watch": "NODE_ENV=test rm -rf ./test/logs/** && bun test --watch",
"test:bail": "NODE_ENV=test rm -rf ./test/logs/** && bun test --watch --bail --verbose",
"test:log": "mkdir -p ./test/logs && LOG_RESOLVES=true NODE_ENV=test rm -rf ./test/logs/** && 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",
"example:signer": "bun run examples/signer.ts",
"example:resolver": "bun run examples/elysia-resolver.ts"
},
"devDependencies": {
"@sinclair/typebox": "0.32.35",
"@stablelib/ed25519": "^2.0.2",
"@types/bun": "^1.1.14",
"@types/express": "^5.0.1",
"bun-bagel": "^1.1.0",
"bun-types": "latest",
"elysia": "^1.2.0"
},
"dependencies": {
"@noble/hashes": "^1.8.0",
"cookie": "^1.1.1",
"glob": "^13.0.0",
"js-yaml": "^4.1.1",
"json-canonicalize": "^1.0.6"
},
"bin": {
"didwebvh": "./dist/cli/didwebvh.js"
},
"exports": {
".": {
"react-native": "./dist/cjs/index.cjs",
"browser": "./dist/browser/index.js",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
},
"./types": {
"types": "./dist/types/types.d.ts"
}
}
}