-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.56 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.56 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
{
"name": "obuild",
"version": "0.4.32",
"description": "Zero-config ESM/TS package builder",
"license": "MIT",
"repository": "unjs/obuild",
"bin": {
"obuild": "./dist/cli.mjs"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./config": "./dist/config.mjs"
},
"scripts": {
"build": "pnpm obuild",
"dev": "pnpm vitest",
"lint": "oxlint . && oxfmt --check",
"lint:fix": "automd && oxlint . --fix && oxfmt",
"obuild": "node ./src/cli.ts",
"release": "pnpm test && pnpm build && changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && pnpm test:types && pnpm vitest run --coverage",
"test:types": "tsgo --noEmit --skipLibCheck"
},
"dependencies": {
"c12": "^4.0.0-beta.4",
"consola": "^3.4.2",
"defu": "^6.1.4",
"exsolve": "^1.0.8",
"magic-string": "^0.30.21",
"pathe": "^2.0.3",
"pretty-bytes": "^7.1.0",
"rolldown": "^1.0.0-rc.10",
"rolldown-plugin-dts": "^0.22.5",
"rollup-plugin-license": "^3.7.0",
"tinyglobby": "^0.2.15"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@typescript/native-preview": "^7.0.0-dev.20260319.1",
"@vitest/coverage-v8": "^4.1.0",
"automd": "^0.4.3",
"changelogen": "^0.6.2",
"eslint-config-unjs": "^0.6.2",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"resolutions": {
"obuild": "link:."
},
"packageManager": "pnpm@10.32.1"
}