-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
60 lines (60 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
{
"name": "zano_web3",
"version": "8.0.0",
"description": "",
"type": "module",
"scripts": {
"build:web": "tsc --project tsconfig.web.json",
"build:server": "tsc --project tsconfig.server.json",
"build:shared": "tsc --project tsconfig.shared.json",
"build": "npm run build:web && npm run build:server && npm run build:shared"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyle-team/zano_web3.git"
},
"keywords": [
"zano",
"web3",
"crypto",
"blockchain",
"wallet"
],
"author": "",
"license": "ISC",
"dependencies": {
"@types/big.js": "^6.2.2",
"@types/node": "^20.14.12",
"@types/node-forge": "^1.3.11",
"@types/react": "^18.3.3",
"@types/uuid": "^10.0.0",
"axios": "^1.7.2",
"big.js": "^6.2.1",
"decimal.js": "^10.4.3",
"node-forge": "^1.3.1",
"react": "^18.3.1",
"typescript": "^5.5.4",
"uuid": "^10.0.0"
},
"bugs": {
"url": "https://github.com/hyle-team/zano_web3/issues"
},
"exports": {
"./web": {
"import": "./web/dist/index.js",
"require": "./web/dist/index.js",
"types": "./web/dist/index.d.ts"
},
"./server": {
"import": "./server/dist/index.js",
"require": "./server/dist/index.js",
"types": "./server/dist/index.d.ts"
},
"./shared": {
"import": "./shared/dist/index.js",
"require": "./shared/dist/index.js",
"types": "./shared/dist/index.d.ts"
}
},
"homepage": "https://github.com/hyle-team/zano_web3#readme"
}