-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 2.14 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "alldid",
"version": "0.1.7",
"description": "The all-in-one DID SDK, resolving all decentralized name(Web3 Name).",
"author": "Jeff Jing <https://github.com/zgayjjf>",
"license": "MIT",
"main": "lib/index.js",
"module": "lib.esm/index.js",
"types": "src/index.ts",
"publishConfig": {
"types": "lib/index.d.ts"
},
"scripts": {
"test": "jest",
"clear": "rm -rf ./lib/ ./lib.esm/",
"build": "npm run clear && npm run build:esm && npm run build:commonjs",
"build:commonjs": "tsc -p tsconfig.build.json",
"build:esm": "tsc -p tsconfig.build.esm.json",
"dev:browser": "npm run build && vite ./example/browser",
"prepublishOnly": "npx only-allow pnpm && npm run build",
"lint": "eslint \"{src,example,packages,scripts,tests}/**/*.ts\"",
"lint:fix": "eslint \"{src,example,packages,scripts,tests}/**/*.ts\" --fix"
},
"keywords": [
"DID",
"Decentralized Identity",
"web3",
"blockchain",
"dotbit",
".bit",
"ENS",
"unstoppabledomains",
"PNS",
"SNS",
"SpaceID",
"Flowns"
],
"files": [
"src",
"lib",
"lib.esm"
],
"homepage": "https://github.com/dotbitHQ/AllDID",
"repository": {
"type": "git",
"url": "https://github.com/dotbitHQ/AllDID.git"
},
"bugs": {
"url": "https://github.com/dotbitHQ/AllDID/issues"
},
"devDependencies": {
"@jest/globals": "^29.4.1",
"@types/jest": "^28.1.2",
"@types/node": "^18.0.0",
"eslint": "8.22.0",
"eslint-config-blockabc": "^0.15.2",
"eslint-plugin-n": "^15.3.0",
"jest": "^28.1.1",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.4",
"vite": "^2.9.14"
},
"dependencies": {
"@alldid/plugin-nostr": "workspace:^",
"@bonfida/spl-name-service": "0.1.51",
"@ensdomains/ens-contracts": "^0.0.15",
"@ensdomains/ensjs": "^2.1.0",
"@ethersproject/providers": "^5.7.2",
"@siddomains/sidjs": "^0.1.17",
"@solana/web3.js": "1.67.0",
"@unstoppabledomains/resolution": "~8.3.3",
"cross-fetch": "^3.1.5",
"dotbit": "^0.4.13",
"ethers": "^5.7.2",
"pns-sdk": "^0.8.0",
"sns-app-contract-api": "^1.1.25"
}
}