UNPKG

yao-node-client

Version:

A node client for yao application development

73 lines (72 loc) 2.52 kB
{ "name": "yao-node-client", "version": "1.1.3", "description": "A node client for yao application development", "type": "commonjs", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": { "type": "git", "url": "git+https://github.com/wwsheng009/yao-node-client.git" }, "files": [ "dist", "LICENSE", "README.md", "package.json" ], "scripts": { "dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' -r tsconfig-paths/register src/app/scripts/myscript.ts", "run": "pnpm run build && ts-node -r tsconfig-paths/register src/app/scripts/myscript.ts", "build": "rimraf dist && tsc && tsc-alias", "build:watch": "concurrently --kill-others \"tsc -w\" \"tsc-alias -w\"", "esbuild:comp": "ts-node src/tools/esbuild.ts -i dist_esm/app/scripts/rollup/index.js --output dist_esm/app/scripts/rollup/index.dist.js", "esbuild:proxy-client": "esbuild dist_esm/yao-node-client/index.js --bundle --platform=node --outfile=dist_esm/yao-node-client/bound-cient.js", "test": "jest", "rollup:proxy-client": "rollup -c rollup.config.mjs -i dist_esm/yao-node-client/index.js -o dist_esm/yao-node-client/bound-rollup.bound.js", "yao:build-direct": "rimraf dist_esm && tsc -p ./tsconfig-yao-deirect.json && tsc-alias -p ./tsconfig-yao-deirect.json", "yao:rollup": "rimraf yao && rollup -c rollup.config.mjs", "npm:publish": "npm run build && npm pack && npm publish" }, "keywords": [ "yao-no-client", "yao" ], "author": "vincentwwsheng@gmail.com", "license": "MIT", "dependencies": { "dotenv": "^16.0.3", "mime": "^3.0.0", "sync-fetch": "^0.4.2", "ws": "^8.12.1", "yao-app-ts-types": "^1.1.3", "yargs": "^17.7.1" }, "devDependencies": { "@rollup/plugin-alias": "^4.0.3", "@rollup/plugin-commonjs": "^24.0.1", "@rollup/plugin-json": "^6.0.0", "@rollup/plugin-node-resolve": "^15.0.1", "@rollup/plugin-typescript": "^11.0.0", "@types/jest": "^29.4.0", "@types/mime": "^3.0.1", "@types/node": "^18.14.0", "@types/sync-fetch": "^0.4.0", "@types/ws": "^8.5.4", "@types/yargs": "^17.0.22", "concurrently": "^7.6.0", "deepmerge": "^4.3.0", "esbuild": "^0.17.8", "esm": "^3.2.25", "glob": "^8.1.0", "jest": "^29.4.3", "nodemon": "^2.0.20", "rimraf": "^4.1.2", "rollup": "^3.17.1", "ts-jest": "^29.0.5", "ts-node": "^10.9.1", "tsc-alias": "^1.8.2", "tsconfig-paths": "^4.1.2", "typescript": "^4.9.5" } }