-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
106 lines (106 loc) · 2.46 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
101
102
103
104
105
106
{
"name": "tsdown",
"version": "0.6.0",
"packageManager": "[email protected]",
"description": "An even faster bundler powered by Rolldown.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/sxzz/tsdown#readme",
"bugs": {
"url": "https://github.com/sxzz/tsdown/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sxzz/tsdown.git"
},
"author": "三咲智子 Kevin Deng <[email protected]>",
"files": [
"dist",
"esm-shims.js"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./config": "./dist/config.js",
"./plugins": "./dist/plugins.js",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"bin": {
"tsdown": "./bin/tsdown.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsx ./src/run.ts",
"dev": "tsx ./src/run.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"format": "prettier --cache --write .",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"publint": "^0.3.0",
"unplugin-unused": "^0.4.0"
},
"peerDependenciesMeta": {
"publint": {
"optional": true
},
"unplugin-unused": {
"optional": true
}
},
"dependencies": {
"ansis": "^3.15.0",
"cac": "^6.7.14",
"chokidar": "^4.0.3",
"consola": "^3.4.0",
"debug": "^4.4.0",
"diff": "^7.0.0",
"pkg-types": "^1.3.1",
"rolldown": "^1.0.0-beta.3",
"rollup": "^4.34.8",
"rollup-plugin-dts": "^6.1.1",
"tinyglobby": "^0.2.11",
"unconfig": "^7.0.0",
"unplugin-isolated-decl": "^0.11.2"
},
"devDependencies": {
"@sxzz/eslint-config": "^5.1.1",
"@sxzz/prettier-config": "^2.2.0",
"@sxzz/test-utils": "^0.5.1",
"@types/debug": "^4.1.12",
"@types/diff": "^7.0.1",
"@types/node": "^22.13.4",
"bumpp": "^10.0.3",
"eslint": "^9.20.1",
"oxc-transform": "^0.51.0",
"prettier": "^3.5.1",
"publint": "^0.3.5",
"tinyexec": "^0.3.2",
"tsup": "^8.3.6",
"tsx": "^4.19.3",
"typescript": "~5.7.3",
"unplugin-ast": "^0.14.0",
"unplugin-unused": "^0.4.1",
"vitest": "^3.0.6"
},
"engines": {
"node": ">=18.0.0"
},
"prettier": "@sxzz/prettier-config"
}