-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "tsbuild",
"type": "module",
"version": "0.0.0",
"packageManager": "pnpm@6.32.3",
"description": "⚡️ Bundle your TypeScript library with no config, powered by esbuild、swc、rollup ...",
"author": "",
"license": "ISC",
"homepage": "https://github.com/Sunny-117/tsbuild#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Sunny-117/tsbuild.git"
},
"bugs": {
"url": "https://github.com/Sunny-117/tsbuild/issues"
},
"main": "index.js",
"engines": {
"node": ">=16"
},
"scripts": {
"dev": "tsup src/cli-*.ts --clean --splitting --dts --watch",
"test": "vitest",
"build": "tsup src/cli-*.ts --clean --splitting --dts",
"d": "tsup",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@microsoft/api-extractor": "^7.36.0",
"@swc/core": "^1",
"postcss": "^8.4.12",
"typescript": ">=4.5.0"
},
"dependencies": {
"bundle-require": "^4.0.0",
"cac": "^6.7.12",
"chokidar": "^3.5.1",
"debug": "^4.3.1",
"esbuild": "^0.21.4",
"execa": "^5.0.0",
"globby": "^11.0.3",
"joycon": "^3.0.1",
"postcss-load-config": "^4.0.1",
"resolve-from": "^5.0.0",
"rollup": "^4.0.2",
"source-map": "0.8.0-beta.0",
"sucrase": "^3.20.3",
"tree-kill": "^1.2.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.21.1",
"@microsoft/api-extractor": "^7.38.3",
"@rollup/plugin-json": "6.0.1",
"@swc/core": "1.2.218",
"@types/debug": "4.1.7",
"@types/flat": "5.0.2",
"@types/fs-extra": "9.0.13",
"@types/node": "14.18.12",
"@types/resolve": "1.20.1",
"colorette": "2.0.16",
"consola": "2.15.3",
"eslint": "^8.56.0",
"flat": "5.0.2",
"fs-extra": "10.0.0",
"postcss": "8.4.12",
"postcss-simple-vars": "6.0.3",
"prettier": "2.5.1",
"resolve": "1.20.0",
"rollup-plugin-dts": "6.1.0",
"sass": "1.62.1",
"strip-json-comments": "4.0.0",
"svelte": "3.46.4",
"svelte-preprocess": "5.0.3",
"terser": "^5.16.0",
"ts-essentials": "9.1.2",
"tsconfig-paths": "3.12.0",
"tsup": "7.1.0",
"typescript": "5.0.2",
"vitest": "^1.6.0",
"wait-for-expect": "3.0.2"
}
}