-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.87 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
{
"name": "@dsnp/did-resolver-frequency",
"version": "0.0.999",
"description": "A DSNP over Frequency DID resolver",
"main": "dist/index.js",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "npm run clean && tsc",
"postbuild": "npm run package",
"clean": "rm -Rf dist",
"prepackage": "cp CONTRIBUTING.md README.md LICENSE ./dist",
"package": "node --no-warnings scripts/package.js",
"test": "echo no tests yet",
"format": "tsc --noEmit --pretty && eslint --fix \"*.ts\"",
"lint": "tsc --noEmit --pretty && eslint \"*.ts\"",
"resolve": "npm run build && node scripts/resolve.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectLibertyLabs/dsnp-did-resolver-frequency.git"
},
"author": "Project Liberty LLC",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ProjectLibertyLabs/dsnp-did-resolver-frequency/issues"
},
"homepage": "https://github.com/ProjectLibertyLabs/dsnp-did-resolver-frequency#readme",
"dependencies": {
"@digitalbazaar/did-io": "2.0.0",
"@dsnp/did-resolver": "0.0.4",
"@dsnp/frequency-schemas": "1.3.2",
"@frequency-chain/api-augment": "1.17.4",
"@polkadot/api": "16.4.6",
"@polkadot/util": "13.5.6",
"avsc": "5.7.9",
"multiformats": "13.4.0"
},
"devDependencies": {
"@eslint/js": "9.35.0",
"@types/jest": "30.0.0",
"@types/node": "24.3.1",
"@typescript-eslint/eslint-plugin": "8.43.0",
"@typescript-eslint/parser": "8.43.0",
"dotenv": "17.2.2",
"eslint": "9.35.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.0.1",
"eslint-plugin-prettier": "5.5.4",
"jest": "30.1.3",
"prettier": "3.6.2",
"ts-jest": "29.4.1",
"ts-node": "10.9.2",
"typescript": "5.9.2",
"typescript-eslint": "8.43.0"
}
}