-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "js-databox",
"version": "0.0.17",
"description": "",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"scripts": {
"build:types": "tsc",
"build": "rm -rf dist && tsc -p tsconfig.json && tsc -p tsconfig-esm.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"dfinity",
"DataBox",
"SDK",
"IC"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^14.1.0",
"rollup": "^2.79.0",
"tslib": "^2.4.0",
"crypto-js": "^4.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-typescript": "^1.0.1",
"typescript": "^4.8.3"
},
"dependencies": {
"@dfinity/agent": "^0.12.0",
"@dfinity/candid": "^0.12.0",
"@dfinity/principal": "^0.12.0",
"@types/crypto-js": "^4.1.1",
"buffer": "^6.0.3",
"crypto-js": "^4.0.0",
"nanoid": "^3.0.0",
"string-random": "^0.1.3"
}
}