-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.51 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
{
"name": "ic-websocket-js",
"version": "0.4.1",
"description": "IC WebSocket on the Internet Computer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/omnia-network/ic-websocket-sdk-js"
},
"bugs": {
"url": "https://github.com/omnia-network/ic-websocket-sdk-js/issues"
},
"keywords": [
"Internet Computer",
"Rust",
"JavaScript",
"Canister",
"WebSocket"
],
"main": "./lib/cjs/index",
"module": "./lib/esm/index",
"scripts": {
"build": "tsc -b && tsc -p tsconfig-cjs.json",
"test": "LOG_LEVEL=debug jest"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/hdkey": "^2.1.0",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"bip39": "^3.1.0",
"dotenv": "^16.4.5",
"hdkey": "^2.1.0",
"isomorphic-webcrypto": "^2.3.8",
"jest": "^29.7.0",
"jest-fixed-jsdom": "^0.0.7",
"jest-websocket-mock": "^2.5.0",
"msw": "^2.6.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"web-streams-polyfill": "^4.0.0"
},
"engines": {
"node": ">=18"
},
"browserslist": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version",
"last 2 edge version"
],
"dependencies": {
"loglevel": "^1.9.2"
},
"peerDependencies": {
"@dfinity/agent": "^2.1.3",
"@dfinity/candid": "^2.1.3",
"@dfinity/identity-secp256k1": "^2.1.3",
"@dfinity/principal": "^2.1.3"
}
}