forked from unjs/obuild
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) 路 1.59 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) 路 1.59 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
{
"name": "obuild",
"version": "0.2.1",
"description": "Zero-config ESM/TS package builder",
"repository": "unjs/obuild",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": "./dist/index.mjs",
"./config": "./dist/config.mjs"
},
"types": "./dist/index.d.mts",
"bin": "./dist/cli.mjs",
"files": [
"dist"
],
"scripts": {
"build": "pnpm obuild",
"dev": "pnpm vitest",
"lint": "eslint . && prettier -c src test",
"lint:fix": "automd && eslint . --fix && prettier -w src test",
"node-ts": "node --disable-warning=ExperimentalWarning --experimental-strip-types",
"obuild": "pnpm node-ts src/cli.ts",
"prepack": "pnpm build",
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && pnpm test:types && pnpm vitest run --coverage",
"test:types": "tsc --noEmit --skipLibCheck"
},
"dependencies": {
"c12": "^3.0.4",
"consola": "^3.4.2",
"defu": "^6.1.4",
"exsolve": "^1.0.5",
"magic-string": "^0.30.17",
"oxc-minify": "^0.72.3",
"oxc-parser": "^0.72.3",
"oxc-transform": "^0.72.3",
"pretty-bytes": "^7.0.0",
"rolldown": "1.0.0-beta.12",
"rolldown-plugin-dts": "^0.13.8",
"tinyglobby": "^0.2.14"
},
"devDependencies": {
"@types/node": "^22.15.30",
"@vitest/coverage-v8": "^3.2.2",
"automd": "^0.4.0",
"changelogen": "^0.6.1",
"eslint": "^9.28.0",
"eslint-config-unjs": "^0.4.2",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"vitest": "^3.2.2"
},
"packageManager": "pnpm@10.11.1"
}