-
-
Notifications
You must be signed in to change notification settings - Fork 219
/
package.json
100 lines (100 loc) · 2.45 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "tsup",
"version": "8.3.5",
"packageManager": "[email protected]",
"description": "Bundle your TypeScript library with no config, powered by esbuild",
"license": "MIT",
"homepage": "https://tsup.egoist.dev/",
"repository": {
"type": "git",
"url": "https://github.com/egoist/tsup.git"
},
"author": "EGOIST",
"files": [
"/assets",
"/dist",
"/schema.json"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"tsup": "dist/cli-default.js",
"tsup-node": "dist/cli-node.js"
},
"scripts": {
"dev": "pnpm run build-fast -- --watch",
"build": "tsup src/cli-*.ts src/index.ts src/rollup.ts --clean --splitting",
"prepublishOnly": "pnpm run build",
"test": "pnpm run build && pnpm run test-only",
"format": "prettier --write .",
"test-only": "vitest run",
"build-fast": "pnpm run build -- --no-dts",
"release": "bumpp"
},
"peerDependencies": {
"@microsoft/api-extractor": "^7.36.0",
"@swc/core": "^1",
"postcss": "^8.4.12",
"typescript": ">=4.5.0"
},
"peerDependenciesMeta": {
"@microsoft/api-extractor": {
"optional": true
},
"@swc/core": {
"optional": true
},
"postcss": {
"optional": true
},
"typescript": {
"optional": true
}
},
"dependencies": {
"bundle-require": "^5.0.0",
"cac": "^6.7.14",
"chokidar": "^4.0.1",
"consola": "^3.2.3",
"debug": "^4.3.7",
"esbuild": "^0.24.0",
"joycon": "^3.1.1",
"picocolors": "^1.1.1",
"postcss-load-config": "^6.0.1",
"resolve-from": "^5.0.0",
"rollup": "^4.24.0",
"source-map": "0.8.0-beta.0",
"sucrase": "^3.35.0",
"tinyexec": "^0.3.1",
"tinyglobby": "^0.2.9",
"tree-kill": "^1.2.2"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.47.11",
"@rollup/plugin-json": "6.1.0",
"@swc/core": "1.7.39",
"@types/debug": "4.1.12",
"@types/node": "22.7.8",
"@types/resolve": "1.20.6",
"bumpp": "^9.7.1",
"flat": "6.0.1",
"postcss": "8.4.47",
"postcss-simple-vars": "7.0.1",
"prettier": "3.3.3",
"resolve": "1.22.8",
"rollup-plugin-dts": "6.1.1",
"sass": "1.80.3",
"strip-json-comments": "5.0.1",
"svelte": "3.49.0",
"svelte-preprocess": "5.1.4",
"terser": "^5.36.0",
"ts-essentials": "10.0.2",
"tsup": "8.3.0",
"typescript": "5.6.3",
"vitest": "2.1.3",
"wait-for-expect": "3.0.2"
},
"engines": {
"node": ">=18"
}
}