tsbundle/package.json

56 lines
1.4 KiB
JSON
Raw Normal View History

2019-04-20 17:59:33 +00:00
{
2023-08-26 13:08:23 +00:00
"name": "@git.zone/tsbundle",
2024-01-10 04:07:09 +00:00
"version": "2.0.15",
2019-04-20 17:59:33 +00:00
"private": false,
"description": "a bundler using rollup for painless bundling of web projects",
2020-03-18 16:39:39 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-14 15:32:12 +00:00
"type": "module",
2019-04-20 17:59:33 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2021-07-23 13:45:23 +00:00
"test": "npm run build && (tstest test/) && (cd test && node ../cli.js --production)",
2022-03-16 10:52:59 +00:00
"build": "(tsbuild --web --allowimplicitany)"
2019-04-20 17:59:33 +00:00
},
2019-04-30 10:49:10 +00:00
"bin": {
"tsbundle": "cli.js"
},
2019-04-20 17:59:33 +00:00
"devDependencies": {
2023-10-03 17:12:49 +00:00
"@git.zone/tsbuild": "^2.1.70",
2023-08-26 13:08:23 +00:00
"@git.zone/tsrun": "^1.2.46",
2024-01-08 15:24:52 +00:00
"@git.zone/tstest": "^1.0.84",
2023-08-26 13:08:23 +00:00
"@push.rocks/tapbundle": "^5.0.15",
2024-01-08 15:24:52 +00:00
"@types/node": "^20.10.7"
2019-04-20 17:59:33 +00:00
},
2019-04-29 20:11:24 +00:00
"dependencies": {
2023-08-26 13:08:23 +00:00
"@push.rocks/early": "^4.0.4",
"@push.rocks/smartcli": "^4.0.8",
2023-10-03 17:12:49 +00:00
"@push.rocks/smartdelay": "^3.0.5",
2024-01-08 15:24:52 +00:00
"@push.rocks/smartfile": "^11.0.4",
2023-08-26 13:08:23 +00:00
"@push.rocks/smartlog": "^3.0.3",
"@push.rocks/smartlog-destination-local": "^9.0.0",
"@push.rocks/smartpath": "^5.0.11",
"@push.rocks/smartpromise": "^4.0.2",
"@push.rocks/smartspawn": "^3.0.2",
2024-01-08 15:24:52 +00:00
"@types/html-minifier": "^4.0.5",
"esbuild": "^0.19.11",
2019-06-16 15:47:34 +00:00
"html-minifier": "^4.0.0",
2024-01-08 15:24:52 +00:00
"typescript": "5.3.3"
2019-06-16 15:02:38 +00:00
},
"files": [
2020-03-14 22:41:25 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-06-16 15:02:38 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2022-03-14 15:32:12 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-06-16 15:02:38 +00:00
]
2022-03-15 12:45:03 +00:00
}