-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
79 lines (79 loc) · 2.09 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
{
"name": "unbuild",
"version": "3.0.0-rc.11",
"description": "A unified javascript build system",
"repository": "unjs/unbuild",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs"
}
},
"types": "./dist/index.d.ts",
"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 --prerelease --publish --publishTag rc && 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.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/pluginutils": "^5.1.3",
"citty": "^0.1.6",
"consola": "^3.2.3",
"defu": "^6.1.4",
"esbuild": "^0.24.0",
"hookable": "^5.5.3",
"jiti": "^2.4.0",
"magic-string": "^0.30.12",
"mkdist": "^1.6.0",
"mlly": "^1.7.2",
"pathe": "^1.1.2",
"pkg-types": "^1.2.1",
"pretty-bytes": "^6.1.1",
"rollup": "^4.25.0",
"rollup-plugin-dts": "^6.1.1",
"scule": "^1.3.0",
"tinyglobby": "^0.2.10",
"ufo": "^1.5.4",
"untyped": "^1.5.1"
},
"devDependencies": {
"@babel/plugin-transform-class-properties": "^7.25.9",
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "^2.1.4",
"automd": "^0.3.12",
"changelogen": "^0.5.7",
"eslint": "^9.14.0",
"eslint-config-unjs": "^0.4.1",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"peerDependencies": {
"typescript": "^5.6.3"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"packageManager": "[email protected]"
}