-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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
{
"name": "@funded-labs/dab-js",
"version": "1.9.1",
"description": "JS adapter for DAB",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "[email protected]:Psychedelic/DAB-js.git"
},
"keywords": [
"ic",
"dfinity",
"plug",
"fleek",
"psychedelic",
"crypto",
"wallet"
],
"author": "Psychedelic",
"license": "MIT",
"bugs": {
"url": "https://github.com/Psychedelic/DAB-js/issues"
},
"homepage": "https://github.com/Psychedelic/DAB-js#readme",
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo",
"compile": "tsc -b tsconfig.json",
"test": "jest",
"lint": "eslint --ext ts,js ./src",
"watch": "tsc --watch",
"package:publish": "npm run build && npm publish",
"publish:local": "npm run build && npm publish --@funded-labs:registry=${LOCAL_REGISTRY:=http://localhost:4873/}",
"unpublish:local": "npm unpublish @funded-labs/dab-js --@funded-labs:registry=${LOCAL_REGISTRY:=http://localhost:4873/} --force"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.32.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^27.1.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"dependencies": {
"@dfinity/agent": "1.3.0",
"@dfinity/candid": "1.3.0",
"@dfinity/identity": "1.3.0",
"@dfinity/principal": "1.3.0",
"@types/node": "^20.10.6",
"buffer-crc32": "^0.2.13",
"crypto-js": "^4.1.1"
}
}