tsrun/package.json

48 lines
1.0 KiB
JSON
Raw Normal View History

2018-06-04 21:25:19 +00:00
{
2018-06-04 21:50:26 +00:00
"name": "@gitzone/tsrun",
2023-07-13 00:53:32 +00:00
"version": "1.2.44",
2018-06-04 21:25:19 +00:00
"description": "run typescript programs efficiently",
2020-06-01 18:32:33 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-11 16:56:08 +00:00
"type": "module",
2018-06-04 21:25:19 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"bin": {
2018-06-30 17:20:36 +00:00
"tsrun": "./cli.js"
2018-06-04 21:25:19 +00:00
},
"scripts": {
2022-03-12 13:43:54 +00:00
"test": "(tsbuild && node ./cli.js test/test.js sayhello)",
2018-06-04 21:25:19 +00:00
"format": "(gitzone format)",
2022-10-12 15:21:03 +00:00
"build": "(tsbuild)",
"buildDocs": "tsdoc"
2018-06-04 21:25:19 +00:00
},
"devDependencies": {
2023-07-13 00:53:31 +00:00
"@gitzone/tsbuild": "^2.1.66",
2023-07-12 23:33:17 +00:00
"@push.rocks/smartcli": "^4.0.6",
2023-07-13 00:53:31 +00:00
"@types/node": "^20.4.2",
2023-06-03 14:09:01 +00:00
"node-fetch": "^3.3.1"
},
2018-06-04 21:25:19 +00:00
"dependencies": {
2023-07-13 00:53:31 +00:00
"@push.rocks/smartfile": "^10.0.28",
2023-07-12 23:33:17 +00:00
"@push.rocks/smartshell": "^3.0.3",
2023-07-13 00:53:31 +00:00
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
2018-06-04 21:25:19 +00:00
},
2019-07-17 11:26:52 +00:00
"private": false,
"files": [
2020-06-01 19:38:19 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-07-17 11:26:52 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2021-06-23 13:26:55 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-07-17 11:26:52 +00:00
]
2023-06-03 14:10:38 +00:00
}