-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.07 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.07 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
{
"name": "did-resolver-cli",
"version": "0.0.2",
"description": "CLI tool to resolve Decentralized Identifiers (DIDs)",
"keywords": [
"did",
"did-core",
"resolver",
"ssi"
],
"license": "Apache-2.0",
"author": "Sai Ranjit Tummalapalli",
"repository": {
"type": "git",
"url": "https://github.com/sairanjit/did-resolver-cli"
},
"bin": {
"did-resolver-cli": "./dist/bin/did-resolver-cli.js"
},
"files": [
"dist"
],
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdx build",
"lint": "tsdx lint",
"format": "tsdx format",
"format:check": "tsdx format --check",
"typecheck": "tsdx typecheck",
"prepublishOnly": "bun run build",
"changeset": "changeset",
"release": "bun run build && changeset publish"
},
"dependencies": {
"commander": "^14.0.2"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/node": "^24.10.0",
"bunchee": "^6.9.3",
"tsdx": "^2.0.0",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=24"
}
}