-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
{
"name": "@dfinity/nns-proto",
"version": "2.0.1",
"description": "The protobuf source used by nns-js to support hardware wallets.",
"license": "Apache-2.0",
"main": "dist/cjs/index.cjs.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"rmdir": "node ../../scripts/rmdir.mjs",
"ts-declaration": "tsc --emitDeclarationOnly --outDir dist/types",
"build": "npm run rmdir && mkdir -p dist && cp -R proto dist && node esbuild.mjs && npm run ts-declaration",
"prepack": "npm run build",
"test": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/dfinity/ic-js.git",
"directory": "packages/nns-proto"
},
"bugs": {
"url": "https://github.com/dfinity/ic-js"
},
"keywords": [
"internet computer",
"internet-computer",
"ic",
"dfinity",
"dfx",
"canister",
"candid",
"motoko",
"javascript",
"typescript",
"blockchain",
"crypto",
"nns",
"network nervous system",
"network-nervous-system"
],
"dependencies": {
"google-protobuf": "^3.21.2"
},
"devDependencies": {
"@types/google-protobuf": "^3.15.6"
}
}