-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.17 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "if-tsb",
"version": "1.0.1",
"description": "Insanely Fast TypeScript Bundler",
"main": "./index.bundle.js",
"engines": {
"node": ">=14.18.0"
},
"bin": {
"tsb": "./cli.bundle.js",
"if-tsb": "./cli.bundle.js",
"iftsb": "./cli.bundle.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "ts-node ./src/cli",
"prepare": "ts-node ./src/cli"
},
"repository": {
"type": "git",
"url": "https://github.com/bdsx/if-tsb.git"
},
"keywords": [
"typescript",
"bundler",
"bundling"
],
"author": "",
"license": "ISC",
"dependencies": {
"colors": "^1.4.0",
"glob": "^10.3.10",
"glob-to-regexp": "^0.4.1",
"source-map": "~0.6.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/find-cache-dir": "^3.2.1",
"@types/glob": "^7.1.4",
"@types/glob-to-regexp": "^0.4.4",
"@types/node": "^20.12.7",
"@types/through2": "^2.0.36",
"prettier": "^3.2.5"
}
}