tsbuild/package.json

61 lines
1.4 KiB
JSON
Raw Normal View History

2018-07-25 18:56:42 +00:00
{
2018-07-25 19:05:21 +00:00
"name": "@gitzone/tsbuild",
2022-08-03 17:34:52 +00:00
"version": "2.1.65",
2018-07-25 18:56:42 +00: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 18:05:46 +00:00
"type": "module",
2018-07-25 18:58:55 +00:00
"bin": {
2020-08-10 22:10:20 +00:00
"tsbuild": "./cli.js"
2018-07-25 18:58:55 +00:00
},
2018-07-25 18:56:42 +00:00
"scripts": {
"test": "tsrun test/test.ts",
2019-01-27 01:42:58 +00:00
"testCustom": "node cli.ts.js custom ts_web",
2023-06-03 14:45:40 +00:00
"build": "node cli.ts.js --web --allowimplicitany",
"buildDocs": "tsdoc"
2018-07-25 18:56:42 +00: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": {
2022-08-03 17:05:31 +00:00
"@pushrocks/early": "^4.0.3",
2023-06-03 14:45:40 +00:00
"@pushrocks/smartcli": "^4.0.6",
"@pushrocks/smartdelay": "^3.0.1",
"@pushrocks/smartfile": "^10.0.7",
"@pushrocks/smartlog": "^3.0.2",
2022-05-25 09:52:42 +00:00
"@pushrocks/smartpath": "^5.0.5",
2023-06-03 14:45:40 +00:00
"@pushrocks/smartpromise": "^4.0.2",
"typescript": "^5.1.3"
2018-07-25 18:56:42 +00:00
},
"devDependencies": {
2023-06-03 14:45:40 +00:00
"@gitzone/tsrun": "^1.2.41",
2022-08-03 17:05:31 +00:00
"@pushrocks/tapbundle": "^5.0.4",
2023-06-03 14:45:40 +00:00
"@types/node": "^20.2.5"
2019-08-26 14:28:03 +00: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 14:28:03 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2022-03-18 13:32:35 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-08-26 14:28:03 +00:00
]
2023-06-03 14:45:40 +00:00
}