tsrun/package.json
2022-10-20 14:15:04 +02:00

48 lines
1.0 KiB
JSON

{
"name": "@gitzone/tsrun",
"version": "1.2.39",
"description": "run typescript programs efficiently",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Lossless GmbH",
"license": "MIT",
"bin": {
"tsrun": "./cli.js"
},
"scripts": {
"test": "(tsbuild && node ./cli.js test/test.js sayhello)",
"format": "(gitzone format)",
"build": "(tsbuild)",
"buildDocs": "tsdoc"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.63",
"@pushrocks/smartcli": "^4.0.6",
"@types/node": "^18.11.2",
"node-fetch": "^3.2.6"
},
"dependencies": {
"@pushrocks/smartfile": "^10.0.2",
"@pushrocks/smartshell": "^2.0.30",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"private": false,
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
],
"browserslist": [
"last 1 chrome versions"
]
}