-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.53 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.53 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
{
"name": "@metanames/sdk",
"version": "6.3.1",
"description": "Meta Names SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/MetaNames/sdk.git",
"author": "Yeboster <marco@yeboster.com>",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "yarn tsc",
"docs": "typedoc --out docs src",
"format": "eslint --fix src",
"test": "jest -i",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@ledgerhq/hw-transport": "^6.34.0",
"@partisiablockchain/abi-client": "^6.0.0",
"@secata-public/bitmanipulation-ts": "^3.4.0",
"bip32-path": "^0.4.2",
"node-fetch": "2",
"partisia-blockchain-applications-crypto": "^1.0.34",
"partisia-blockchain-applications-rpc": "^1.0.13",
"partisia-blockchain-applications-sdk": "^0.1.4",
"tr46": "^4.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^18.19.130",
"@types/node-fetch": "^2.6.13",
"@types/tr46": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"dotenv": "^16.6.1",
"eslint": "^8.57.1",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typedoc": "^0.24.8",
"typescript": "^5.4.0"
},
"publishConfig": {
"directory": "dist"
}
}