2018-06-04 21:25:19 +00:00
|
|
|
{
|
2023-08-26 11:32:28 +00:00
|
|
|
"name": "@git.zone/tsrun",
|
2024-10-27 18:46:14 +00:00
|
|
|
"version": "1.3.3",
|
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": {
|
2024-10-27 18:11:55 +00:00
|
|
|
"test": "(pnpm run build && node ./cli.js test/test.js sayhello)",
|
2018-06-04 21:25:19 +00:00
|
|
|
"format": "(gitzone format)",
|
2024-10-27 18:11:55 +00:00
|
|
|
"build": "(tsbuild --web --allowimplicitany)",
|
2022-10-12 15:21:03 +00:00
|
|
|
"buildDocs": "tsdoc"
|
2018-06-04 21:25:19 +00:00
|
|
|
},
|
2018-06-05 18:40:49 +00:00
|
|
|
"devDependencies": {
|
2024-06-23 22:14:27 +00:00
|
|
|
"@git.zone/tsbuild": "^2.1.80",
|
|
|
|
"@push.rocks/smartcli": "^4.0.11",
|
|
|
|
"@types/node": "^20.14.8",
|
2023-08-26 11:32:28 +00:00
|
|
|
"node-fetch": "^3.3.2"
|
2018-06-05 18:40:49 +00:00
|
|
|
},
|
2018-06-04 21:25:19 +00:00
|
|
|
"dependencies": {
|
2024-06-23 22:14:27 +00:00
|
|
|
"@push.rocks/smartfile": "^11.0.21",
|
|
|
|
"@push.rocks/smartshell": "^3.0.5",
|
2024-10-27 18:45:57 +00:00
|
|
|
"tsx": "^4.19.2"
|
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"
|
2024-10-27 18:11:55 +00: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 18:11:55 +00:00
|
|
|
}
|