-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.75 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
{
"name": "@metaid/metaid",
"version": "1.5.19",
"description": "MetaID is a library for MetaID protocol. It provides a set of functions to manage the DID document and the DID transaction.",
"type": "module",
"main": "./dist/metaid.umd.cjs",
"module": "./dist/metaid.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/metaid.js",
"require": "./dist/metaid.umd.cjs"
}
},
"scripts": {
"hello": "tsc && node dist/index.js",
"build": "vite build",
"b": "vite build",
"test": "vitest --ui"
},
"keywords": [
"MetaID",
"metaid",
"blockchain",
"DID protocol",
"mvc",
"Microvision Chain",
"MetaID-Labs"
],
"author": "MetaID-Labs",
"license": "MIT",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/metaid-developers/metaid"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@vitest/ui": "^0.34.1",
"path": "^0.12.7",
"prettier": "^3.0.3",
"typescript": "^5.1.6",
"vite": "^4.4.11",
"vite-plugin-dts": "^3.6.3",
"vite-plugin-node-polyfills": "^0.19.0",
"vite-plugin-wasm": "^3.3.0",
"vitest": "^0.34.6"
},
"dependencies": {
"@bitcoin-js/tiny-secp256k1-asmjs": "^2.2.3",
"@metaid/metaid": "^1.2.7",
"@metaid/metaid-cli": "0.0.2",
"@okxweb3/crypto-lib": "^1.0.1",
"@scure/bip39": "^1.2.2",
"@tanstack/react-query": "^5.64.0",
"@types/ramda": "^0.29.12",
"axios": "^1.5.0",
"bip32": "^4.0.0",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^6.1.5",
"chalk": "3.0.0",
"dayjs": "^1.11.9",
"meta-contract": "^0.3.35",
"ramda": "^0.29.1",
"uuid": "^9.0.1",
"zustand": "^5.0.3"
}
}