forked from radixdlt/radix-connect-webrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.84 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@radixdlt/radix-connect-webrtc",
"version": "0.0.0",
"description": "WebRTC client for Radix Connect",
"homepage": "https://developers.radixdlt.com",
"keywords": [
"radix",
"connect",
"ledger",
"schemas",
"dlt",
"web3",
"dApp",
"crypto",
"DeFi"
],
"authors": [
"Alex Stelea <[email protected]>",
"Dawid Sowa <[email protected]>"
],
"bugs": "https://github.com/radixdlt/radix-connect-webrtc/issues",
"license": "SEE LICENSE IN RADIX-SOFTWARE-EULA",
"engines": {
"node": ">=14.0.0"
},
"files": [
"RADIX-SOFTWARE-EULA",
"dist"
],
"main": "./dist/radix-connect-webrtc.mjs",
"exports": {
".": {
"import": {
"types": "./dist/radix-connect-webrtc.d.ts",
"default": "./dist/radix-connect-webrtc.mjs"
},
"require": {
"types": "./dist/radix-connect-webrtc.d.ts",
"default": "./dist/radix-connect-webrtc.umd.js"
}
}
},
"types": "./dist/radix-connect-webrtc.d.ts",
"scripts": {
"build": "vite build && npm run build:types",
"build:types": "tsc --project tsconfig.types.json --emitDeclarationOnly",
"prettier": "prettier --cache --check src",
"prettier:fix": "prettier --cache --write src",
"lint": "eslint --cache \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint --cache --fix \"src/**/*.{ts,tsx}\"",
"preview": "vite preview",
"pre-push": "npm run build && npm run lint && npm run prettier && npm run test",
"prepare": "cd .. && npx husky install",
"test": "jest",
"test:watch": "jest --watch",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@babel/preset-env": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/blake2b": "^2.1.0",
"@types/elliptic": "^6.4.14",
"@types/jest": "^29.5.4",
"@types/lodash.chunk": "^4.2.7",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"babel-preset-vite": "^1.1.0",
"elliptic": "^6.5.4",
"eslint": "^8.48.0",
"eslint-config-alloy": "^5.1.2",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"prettier": "^3.0.3",
"semantic-release": "^21.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-tsconfig-paths": "^4.2.0"
},
"dependencies": {
"@koush/wrtc": "^0.5.3",
"@radixdlt/radix-connect-schemas": "^0.1.0",
"blake2b": "^2.1.4",
"buffer": "^6.0.3",
"lodash.chunk": "^4.2.0",
"neverthrow": "^6.0.0",
"rxjs": "^7.8.1",
"tslog": "4.8.0",
"zod": "^3.22.4"
},
"repository": {
"type": "git",
"url": "https://github.com/radixdlt/radix-connect-webrtc.git"
}
}