-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.1 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.1 KB
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
{
"name": "unbuild",
"version": "3.6.1",
"description": "A unified JavaScript build system",
"repository": "unjs/unbuild",
"license": "MIT",
"type": "module",
"exports": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"types": "./dist/index.d.mts",
"bin": {
"unbuild": "./dist/cli.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "pnpm unbuild",
"dev": "pnpm unbuild test/fixture",
"lint": "eslint . && prettier -c src test examples",
"lint:fix": "automd && eslint --fix . && prettier -w src test examples",
"prepack": "pnpm unbuild",
"release": "pnpm test && changelogen --release --publish && git push --follow-tags",
"stub": "pnpm unbuild --stub",
"test": "pnpm lint && pnpm test:types && vitest run --coverage",
"test:types": "tsc --noEmit",
"unbuild": "jiti ./src/cli"
},
"dependencies": {
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.9",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/pluginutils": "^5.3.0",
"citty": "^0.1.6",
"consola": "^3.4.2",
"defu": "^6.1.4",
"esbuild": "^0.25.12",
"fix-dts-default-cjs-exports": "^1.0.1",
"hookable": "^5.5.3",
"jiti": "^2.6.1",
"magic-string": "^0.30.21",
"mkdist": "^2.4.1",
"mlly": "^1.8.0",
"pathe": "^2.0.3",
"pkg-types": "^2.3.0",
"pretty-bytes": "^7.1.0",
"rollup": "^4.57.1",
"rollup-plugin-dts": "^6.3.0",
"scule": "^1.3.0",
"tinyglobby": "^0.2.15",
"untyped": "^2.0.0"
},
"devDependencies": {
"@babel/plugin-transform-class-properties": "^7.28.6",
"@types/node": "^25.2.2",
"@vitest/coverage-v8": "^4.0.18",
"automd": "^0.4.3",
"changelogen": "^0.6.2",
"eslint": "^10.0.0",
"eslint-config-unjs": "^0.6.2",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"peerDependencies": {
"typescript": "^5.9.2"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"packageManager": "pnpm@10.29.2"
}