tsrun/package.json
2023-08-26 13:32:29 +02:00

48 lines
1.0 KiB
JSON

{
"name": "@git.zone/tsrun",
"version": "1.2.45",
"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.66",
"@push.rocks/smartcli": "^4.0.8",
"@types/node": "^20.5.6",
"node-fetch": "^3.3.2"
},
"dependencies": {
"@push.rocks/smartfile": "^10.0.30",
"@push.rocks/smartshell": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "5.1.6"
},
"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"
]
}