tsbuild/package.json

62 lines
1.4 KiB
JSON
Raw Normal View History

2018-07-25 20:56:42 +02:00
{
2023-08-26 13:27:51 +02:00
"name": "@git.zone/tsbuild",
2024-11-05 01:48:49 +01:00
"version": "2.2.0",
2018-07-25 20:56:42 +02:00
"private": false,
"description": "TypeScript nightly to easily make use of latest features",
2020-03-13 19:23:01 +00:00
"main": "dist_ts/index.js",
2020-04-30 09:02:43 +00:00
"typings": "dist_ts/index.d.ts",
2022-03-12 19:05:46 +01:00
"type": "module",
2018-07-25 20:58:55 +02:00
"bin": {
2020-08-10 22:10:20 +00:00
"tsbuild": "./cli.js"
2018-07-25 20:58:55 +02:00
},
2018-07-25 20:56:42 +02:00
"scripts": {
"test": "tsrun test/test.ts",
2023-06-03 16:45:40 +02:00
"build": "node cli.ts.js --web --allowimplicitany",
"buildDocs": "tsdoc"
2018-07-25 20:56:42 +02:00
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/pushrocks/tsn.git"
},
"keywords": [
"TypeScript"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/tsn/issues"
},
"homepage": "https://gitlab.com/pushrocks/tsn#README",
"dependencies": {
"@git.zone/tspublish": "^1.9.1",
2023-08-26 13:27:51 +02:00
"@push.rocks/early": "^4.0.4",
"@push.rocks/smartcli": "^4.0.11",
2023-08-26 13:27:51 +02:00
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartfile": "^11.1.5",
"@push.rocks/smartlog": "^3.0.7",
2024-05-10 15:55:25 +02:00
"@push.rocks/smartpath": "^5.0.18",
"@push.rocks/smartpromise": "^4.2.2",
"typescript": "5.7.3"
2018-07-25 20:56:42 +02:00
},
"devDependencies": {
"@git.zone/tsrun": "^1.2.47",
"@push.rocks/tapbundle": "^5.5.6",
"@types/node": "^22.12.0"
2019-08-26 16:28:03 +02:00
},
"files": [
2020-03-13 19:23:01 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-04-30 09:02:43 +00:00
"dist_*/**/*",
2020-03-13 19:23:01 +00:00
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-08-26 16:28:03 +02:00
"cli.js",
"npmextra.json",
"readme.md"
2022-03-18 14:32:35 +01:00
],
"browserslist": [
"last 1 chrome versions"
2019-08-26 16:28:03 +02:00
]
2023-06-03 16:45:40 +02:00
}