-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.37 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
{
"name": "serve-placeholder",
"version": "2.0.2",
"description": "Smart placeholder for missing assets",
"repository": "unjs/serve-placeholder",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint . && biome check .",
"lint:fix": "automd && eslint . --fix && biome check --apply .",
"prepack": "pnpm build",
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && pnpm test:types && vitest run --coverage",
"test:types": "tsc --noEmit --skipLibCheck"
},
"dependencies": {
"defu": "^6.1.4"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@types/node": "^20.16.5",
"@vitest/coverage-v8": "^1.6.0",
"automd": "^0.3.8",
"changelogen": "^0.5.7",
"eslint": "^9.10.0",
"eslint-config-unjs": "^0.3.2",
"h3": "^1.12.0",
"jiti": "^1.21.6",
"listhen": "^1.7.2",
"ofetch": "^1.3.4",
"typescript": "^5.6.2",
"unbuild": "^2.0.0",
"vitest": "^1.6.0"
},
"packageManager": "[email protected]"
}