2018-06-04 23:25:19 +02:00
|
|
|
{
|
2023-08-26 13:32:28 +02:00
|
|
|
"name": "@git.zone/tsrun",
|
2024-10-27 19:45:58 +01:00
|
|
|
"version": "1.3.2",
|
2018-06-04 23:25:19 +02: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 17:56:08 +01:00
|
|
|
"type": "module",
|
2018-06-04 23:25:19 +02:00
|
|
|
"author": "Lossless GmbH",
|
|
|
|
"license": "MIT",
|
|
|
|
"bin": {
|
2018-06-30 19:20:36 +02:00
|
|
|
"tsrun": "./cli.js"
|
2018-06-04 23:25:19 +02:00
|
|
|
},
|
|
|
|
"scripts": {
|
2024-10-27 19:11:55 +01:00
|
|
|
"test": "(pnpm run build && node ./cli.js test/test.js sayhello)",
|
2018-06-04 23:25:19 +02:00
|
|
|
"format": "(gitzone format)",
|
2024-10-27 19:11:55 +01:00
|
|
|
"build": "(tsbuild --web --allowimplicitany)",
|
2022-10-12 17:21:03 +02:00
|
|
|
"buildDocs": "tsdoc"
|
2018-06-04 23:25:19 +02:00
|
|
|
},
|
2018-06-05 20:40:49 +02:00
|
|
|
"devDependencies": {
|
2024-06-24 00:14:27 +02:00
|
|
|
"@git.zone/tsbuild": "^2.1.80",
|
|
|
|
"@push.rocks/smartcli": "^4.0.11",
|
|
|
|
"@types/node": "^20.14.8",
|
2023-08-26 13:32:28 +02:00
|
|
|
"node-fetch": "^3.3.2"
|
2018-06-05 20:40:49 +02:00
|
|
|
},
|
2018-06-04 23:25:19 +02:00
|
|
|
"dependencies": {
|
2024-06-24 00:14:27 +02:00
|
|
|
"@push.rocks/smartfile": "^11.0.21",
|
|
|
|
"@push.rocks/smartshell": "^3.0.5",
|
2024-10-27 19:45:57 +01:00
|
|
|
"tsx": "^4.19.2"
|
2018-06-04 23:25:19 +02:00
|
|
|
},
|
2019-07-17 13:26:52 +02: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 13:26:52 +02:00
|
|
|
"cli.js",
|
|
|
|
"npmextra.json",
|
|
|
|
"readme.md"
|
2021-06-23 15:26:55 +02:00
|
|
|
],
|
|
|
|
"browserslist": [
|
|
|
|
"last 1 chrome versions"
|
2024-10-27 19:11:55 +01:00
|
|
|
],
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://gitlab.com/gitzone/tsrun.git"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://gitlab.com/gitzone/tsrun/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://gitlab.com/gitzone/tsrun#readme"
|
2024-10-27 19:11:55 +01:00
|
|
|
}
|