-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "packageName",
"version": "0.0.0",
"description": "",
"license": "MIT",
"repository": "unjs/packageName",
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs"
},
"scripts": {
"build": "obuild",
"dev": "vitest dev",
"fmt": "automd && oxlint . --fix && oxfmt .",
"lint": "oxlint . && oxfmt --check .",
"prepack": "pnpm build",
"release": "pnpm test && pnpm build && changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && pnpm typecheck && vitest run --coverage",
"typecheck": "tsgo --noEmit --skipLibCheck"
},
"devDependencies": {
"@types/node": "latest",
"@typescript/native-preview": "latest",
"@vitest/coverage-v8": "latest",
"automd": "latest",
"changelogen": "latest",
"obuild": "latest",
"oxfmt": "latest",
"oxlint": "latest",
"typescript": "latest",
"vitest": "latest"
},
"packageManager": "pnpm@10.33.2"
}