web3/package.json

86 lines
2.1 KiB
JSON
Raw Permalink Normal View History

2024-07-24 19:37:25 +07:00
{
"name": "lethean_web3",
2026-02-28 12:02:03 +01:00
"version": "9.2.2",
2024-07-24 19:37:25 +07:00
"description": "",
2024-07-24 22:17:17 +07:00
"type": "module",
2025-06-25 11:51:51 +03:00
"main": "./web/dist/index.js",
"module": "./web/dist/index.js",
"browser": "./web/dist/index.js",
"node": "./server/dist/index.js",
"types": "./web/dist/index.d.ts",
"sideEffects": false,
"typesVersions": {
">=4.2": {
"protobufs/*": [
"./dist/types/protobufs/*"
]
}
},
2024-07-24 19:37:25 +07:00
"scripts": {
2024-07-26 16:13:13 +07:00
"build:web": "tsc --project tsconfig.web.json",
"build:server": "tsc --project tsconfig.server.json",
"build:shared": "tsc --project tsconfig.shared.json",
2025-01-08 23:38:56 +07:00
"build": "npm run build:web && npm run build:server && npm run build:shared"
2024-07-24 19:37:25 +07:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyle-team/lethean_web3.git"
2024-07-24 19:37:25 +07:00
},
"keywords": [
"lethean",
2024-07-24 19:37:25 +07:00
"web3",
"crypto",
"blockchain",
"wallet"
],
"author": "",
"license": "ISC",
2024-07-25 00:42:28 +07:00
"dependencies": {
2024-07-26 16:14:44 +07:00
"@types/big.js": "^6.2.2",
2024-07-24 20:16:27 +07:00
"@types/node": "^20.14.12",
2024-12-28 23:47:22 +07:00
"@types/node-forge": "^1.3.11",
2024-07-24 19:37:25 +07:00
"@types/react": "^18.3.3",
"@types/uuid": "^10.0.0",
2024-07-24 20:16:27 +07:00
"axios": "^1.7.2",
2024-07-26 16:13:13 +07:00
"big.js": "^6.2.1",
"decimal.js": "^10.4.3",
2024-12-28 23:44:03 +07:00
"node-forge": "^1.3.1",
2024-07-24 19:37:25 +07:00
"react": "^18.3.1",
2024-07-25 00:42:28 +07:00
"typescript": "^5.5.4",
2024-08-07 20:08:33 +07:00
"uuid": "^10.0.0"
2024-07-24 19:37:25 +07:00
},
"bugs": {
"url": "https://github.com/hyle-team/lethean_web3/issues"
2024-07-24 19:37:25 +07:00
},
2024-07-28 16:32:34 +07:00
"exports": {
2025-06-25 11:51:51 +03:00
".": {
"import": "./web/dist/index.js",
"require": "./web/dist/index.js",
"types": "./web/dist/index.d.ts"
},
2024-07-28 16:32:34 +07:00
"./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"
2024-07-28 16:32:34 +07:00
}
},
2025-06-25 11:51:51 +03:00
"files": [
"web",
"server",
"shared",
"package.json",
"README.md"
],
"homepage": "https://github.com/hyle-team/lethean_web3#readme"
2025-06-28 00:30:16 +07:00
}