This repository has been archived by the owner on Mar 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.89 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
{
"name": "@liqwid-labs/libwallet",
"version": "0.0.9",
"description": "Library to interact with wallets & LiqwidLabs's CTL(Cardano Trasaction Lib)'s client",
"main": "dist/index.js",
"type": "module",
"scripts": {
"esbuild-build-watch": "node ./build.js -w",
"esbuild-build": "node ./build.js",
"build-watch": "webpack-dev-server --progress",
"_build": "webpack --mode=production",
"_dev": "concurrently \"npm run build-watch\" \"npm run serve\"",
"serve": "http-server ./build --proxy http://localhost:8080?",
"dev": "vite --port 1234",
"build": "vite build && npm run types",
"preview": "vite preview --port 1234",
"types": "tsc --emitDeclarationOnly"
},
"author": "Banou26",
"devDependencies": {
"@cardano-sdk/cip30": "^0.5.0",
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"assert": "^2.0.0",
"browserify-fs": "^1.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"concurrently": "^7.3.0",
"crypto-browserify": "^3.12.0",
"esbuild": "^0.15.6",
"esbuild-plugin-alias": "^0.2.1",
"esbuild-plugin-wasm": "^1.0.0",
"events": "^3.3.0",
"http-server": "^14.1.1",
"node-libs-browser": "^2.2.1",
"node-polyfill-webpack-plugin": "^2.0.1",
"os-browserify": "^0.3.0",
"path": "^0.12.7",
"rollup-plugin-node-polyfills": "^0.2.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"ts-loader": "^9.3.1",
"typescript": "^4.8.3",
"url": "^0.11.0",
"util": "^0.12.4",
"vite": "^3.1.0",
"vite-plugin-wasm": "^2.1.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.0"
},
"dependencies": {
"@emurgo/cardano-serialization-lib-browser": "^11.0.5",
"p-queue": "^7.3.0",
"reconnecting-websocket": "^4.4.0"
}
}