-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "@origyn/actor-reference",
"version": "0.1.3",
"description": "TypeScript helper library for creating actor references that proxy function calls to canisters on the Internet Computer.",
"author": "ORIGYN Foundation",
"license": "Apache-2.0",
"keywords": [
"origyn",
"internet computer",
"typescript",
"actor",
"actor reference"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && npm run lint && npm run compile",
"test": "npm run build && jest --config jestconfig.json",
"lint": "tslint -p tsconfig.json",
"clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo",
"compile": "tsc -b tsconfig.json",
"format": "prettier --write \"src/**/*.ts\""
},
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.36",
"@types/jest": "^28.1.8",
"jest": "^28.1.3",
"prettier": "^2.8.3",
"semver": "^7.4.0",
"ts-jest": "^28.0.8",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.4"
},
"files": [
"dist/**/*"
],
"dependencies": {
"@dfinity/agent": "^0.13.3",
"@dfinity/identity": "^0.13.3",
"@dfinity/principal": "^0.13.3",
"bip39": "^3.1.0",
"hdkey": "^2.1.0",
"isomorphic-fetch": "^3.0.0"
}
}