Files
tsbundle/package.json

59 lines
1.7 KiB
JSON
Raw Normal View History

2019-04-20 19:59:33 +02:00
{
2023-08-26 15:08:23 +02:00
"name": "@git.zone/tsbundle",
2025-06-26 20:07:27 +00:00
"version": "2.5.0",
2019-04-20 19:59:33 +02:00
"private": false,
"description": "a multi-bundler tool supporting esbuild, rolldown, and rspack 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 16:32:12 +01:00
"type": "module",
2019-04-20 19:59:33 +02:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "npm run build && (tstest test/ --verbose)",
2022-03-16 11:52:59 +01:00
"build": "(tsbuild --web --allowimplicitany)"
2019-04-20 19:59:33 +02:00
},
2019-04-30 12:49:10 +02:00
"bin": {
"tsbundle": "cli.js"
},
2019-04-20 19:59:33 +02:00
"devDependencies": {
"@git.zone/tsbuild": "^2.6.4",
"@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^2.3.1",
"@push.rocks/tapbundle": "^6.0.3",
"@types/node": "^22.12.0"
2019-04-20 19:59:33 +02:00
},
2019-04-29 22:11:24 +02:00
"dependencies": {
2023-08-26 15:08:23 +02:00
"@push.rocks/early": "^4.0.4",
"@push.rocks/smartcli": "^4.0.11",
2023-10-03 19:12:49 +02:00
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartfile": "^11.2.5",
"@push.rocks/smartlog": "^3.1.8",
"@push.rocks/smartlog-destination-local": "^9.0.2",
"@push.rocks/smartpath": "^5.0.18",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/smartspawn": "^3.0.3",
2024-01-08 16:24:52 +01:00
"@types/html-minifier": "^4.0.5",
"esbuild": "^0.25.5",
2019-06-16 17:47:34 +02:00
"html-minifier": "^4.0.0",
"rolldown": "^1.0.0-beta.18",
"@rspack/core": "^1.1.8",
"typescript": "5.8.3"
2019-06-16 17:02:38 +02:00
},
"files": [
2020-03-14 22:41:25 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-06-16 17:02:38 +02:00
"cli.js",
"npmextra.json",
"readme.md"
2022-03-14 16:32:12 +01:00
],
"browserslist": [
"last 1 chrome versions"
],
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
2022-03-15 13:45:03 +01:00
}