12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "name": "rjsvm",
- "version": "1.0.0",
- "description": "",
- "main": "lib/Launcher.js",
- "scripts": {
- "clean": "rm -rf gui/* gateway/main.js lib",
- "start": "npm run build && npm run deploy",
- "tsc": "tsc",
- "build": "npm run clean && npm run build-scripts && npm run build-gui && npm run copy-gui",
- "build-scripts": "tsc",
- "build-gui": "cd src/frontend && npm run build",
- "copy-gui": "cp src/frontend/build/index.html gui",
- "webpack-gateway": "webpack --config webpack.gateway.js --progress && cp build/gateway/main.js gateway",
- "deploy": "node ./lib/Deploy.js",
- "github": "cp gateway/index.html ~/caisar.github.io && cp gateway/main.js ~/caisar.github.io && cd ~/caisar.github.io && git checkout master && git add -A && git commit -m \"update\" --allow-empty && git push origin master --force && git checkout main && git add -A && git commit -m \"update\" --allow-empty && git push origin main --force"
- },
- "author": "",
- "license": "ISC",
- "dependencies": {
- "buffer": "^6.0.3",
- "chai": "^4.3.4",
- "node-fetch": "^2.6.1",
- "rjsvm": "^0.3.2",
- "xrpio": "^0.3.0",
- "xrpl": "^2.7.0"
- },
- "devDependencies": {
- "@types/node": "^18.11.9",
- "base-64": "^1.0.0",
- "browserify-zlib": "^0.2.0",
- "buffer": "^6.0.3",
- "crypto-browserify": "^3.12.0",
- "mocha": "^8.3.2",
- "process": "^0.11.10",
- "ts-loader": "^8.1.0",
- "typescript": "^4.9.3",
- "url": "^0.11.0",
- "utf8": "^3.0.0",
- "webpack": "^5.88.2",
- "webpack-cli": "^5.1.4"
- }
- }
|