2021-12-31 21:38:26 +00:00
|
|
|
{
|
2021-12-31 21:42:24 +00:00
|
|
|
"name": "@hibas123/jrpcgen",
|
2022-01-10 14:15:06 +00:00
|
|
|
"version": "1.0.19",
|
2021-12-31 21:38:26 +00:00
|
|
|
"main": "lib/index.js",
|
|
|
|
"license": "MIT",
|
|
|
|
"packageManager": "yarn@3.1.1",
|
|
|
|
"scripts": {
|
|
|
|
"start": "ts-node src/index.ts",
|
2022-01-05 21:16:17 +00:00
|
|
|
"test-start": "npm run start -- compile examples/example.jrpc --definition=examples/definition.json -o=ts-node:examples/Typescript/out -o=c#:examples/CSharp/Generated",
|
|
|
|
"test-csharp": "cd examples/CSharp/Example/ && dotnet run",
|
|
|
|
"test-typescript": "ts-node examples/test.ts",
|
|
|
|
"test": "npm run test-start && npm run test-csharp && npm run test-typescript",
|
2022-01-01 01:08:05 +00:00
|
|
|
"build": "esbuild src/index.ts --bundle --platform=node --target=node14 --outfile=lib/jrpc.js",
|
|
|
|
"prepublishOnly": "npm run build"
|
2021-12-31 21:38:26 +00:00
|
|
|
},
|
2022-01-01 01:08:05 +00:00
|
|
|
"bin": {
|
|
|
|
"jrpc": "./lib/jrpc.js"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"lib/jrpc.js",
|
|
|
|
"templates/**",
|
|
|
|
"examples/**",
|
|
|
|
"src/**",
|
|
|
|
"tsconfig.json"
|
|
|
|
],
|
2021-12-31 21:38:26 +00:00
|
|
|
"devDependencies": {
|
|
|
|
"@types/debug": "^4.1.7",
|
2022-01-05 21:16:17 +00:00
|
|
|
"@types/fs-extra": "^9.0.13",
|
2021-12-31 21:38:26 +00:00
|
|
|
"@types/node": "^17.0.5",
|
2022-01-01 00:39:15 +00:00
|
|
|
"@types/prettier": "^2.4.2",
|
2021-12-31 21:38:26 +00:00
|
|
|
"@types/yargs": "^17.0.8",
|
|
|
|
"chalk": "4",
|
|
|
|
"debug": "^4.3.3",
|
2022-01-01 01:08:05 +00:00
|
|
|
"esbuild": "^0.14.10",
|
2021-12-31 21:38:26 +00:00
|
|
|
"prettier": "^2.5.1",
|
2022-01-01 01:08:05 +00:00
|
|
|
"ts-node": "^10.4.0",
|
|
|
|
"typescript": "^4.5.4",
|
2021-12-31 21:38:26 +00:00
|
|
|
"yargs": "^17.3.1"
|
2022-01-05 21:16:17 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"fs-extra": "^10.0.0"
|
2021-12-31 21:38:26 +00:00
|
|
|
}
|
|
|
|
}
|