tsbundle/package.json

56 lines
1.4 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-01-28 12:11:40 +01:00
"version": "2.1.1",
2019-04-20 19:59:33 +02: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 16:32:12 +01:00
"type": "module",
2019-04-20 19:59:33 +02:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2021-07-23 15:45:23 +02:00
"test": "npm run build && (tstest test/) && (cd test && node ../cli.js --production)",
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.2.1",
"@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^1.0.96",
"@push.rocks/tapbundle": "^5.5.6",
"@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.1.5",
"@push.rocks/smartlog": "^3.0.7",
"@push.rocks/smartlog-destination-local": "^9.0.2",
"@push.rocks/smartpath": "^5.0.18",
"@push.rocks/smartpromise": "^4.2.2",
"@push.rocks/smartspawn": "^3.0.3",
2024-01-08 16:24:52 +01:00
"@types/html-minifier": "^4.0.5",
"esbuild": "^0.24.2",
2019-06-16 17:47:34 +02:00
"html-minifier": "^4.0.0",
"typescript": "5.7.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"
2019-06-16 17:02:38 +02:00
]
2022-03-15 13:45:03 +01:00
}