-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.93 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@deland-labs/ic-connector",
"version": "0.0.1",
"homepage": "https://github.com/Deland-Labs/ic-connector#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Deland-Labs/ic-connector.git"
},
"bugs": {
"url": "https://github.com/Deland-Labs/ic-connector/issues"
},
"source": "src/index.ts",
"types": "dist/index.d.ts",
"module": "dist/index.esm.js",
"main": "dist/index.js",
"dependencies": {
"@astrox/connection": "^0.0.41",
"@dfinity/agent": "^0.11.0",
"@dfinity/candid": "^0.11.0",
"@dfinity/identity": "^0.11.0",
"@dfinity/principal": "^0.11.0",
"@swc/helpers": "^0.4.3",
"crc": "^4.1.1",
"iterable-observer": "^1.0.0-rc.0",
"js-sha256": "^0.9.0",
"node-color-log": "^9.0.0"
},
"devDependencies": {
"@parcel/packager-ts": "2.7.0",
"@parcel/transformer-typescript-types": "2.7.0",
"@types/jest": "27.5.2",
"fake-indexeddb": "^4.0.0",
"husky": "8.0.1",
"jest": "28.1.3",
"jest-localstorage-mock": "2.4.21",
"lint-staged": "12.5.0",
"open-cli": "7.0.1",
"parcel": "2.7.0",
"prettier": "2.7.1",
"ts-jest": "28.0.7",
"typedoc": "0.23.10",
"typedoc-plugin-mdn-links": "1.0.6",
"typescript": "4.7.4"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
},
"lint-staged": {
"*.{md,json,yml,ts}": "prettier --write"
},
"jest": {
"preset": "ts-jest",
"resetMocks": false,
"setupFiles": [
"jest-localstorage-mock",
"fake-indexeddb/auto"
]
},
"scripts": {
"prepare": "husky install",
"test": "lint-staged && jest --passWithNoTests",
"pack-dist": "rm -rf dist/ && parcel build",
"pack-docs": "rm -rf docs/ && typedoc src/",
"build": "npm run pack-dist && npm run pack-docs",
"prepublishOnly": "npm test && npm run build",
"start": "npm run pack-docs && open-cli docs/index.html"
}
}