tsrun/package.json

48 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2018-06-04 21:25:19 +00:00
{
2023-08-26 11:32:28 +00:00
"name": "@git.zone/tsrun",
2024-06-24 10:06:14 +00:00
"version": "1.2.49",
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": {
"@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-04 21:25:19 +00:00
"dependencies": {
"@push.rocks/smartfile": "^11.0.21",
"@push.rocks/smartshell": "^3.0.5",
"ts-node": "^10.9.2",
"typescript": "5.5.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"
2019-07-17 11:26:52 +00:00
]
2023-06-03 14:10:38 +00:00
}