-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 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
{
"name": "codeup",
"version": "0.0.7",
"description": "Automated Codebase Maintainer.",
"license": "MIT",
"repository": "unjs/codeup",
"bin": {
"codeup": "./dist/cli/index.mjs"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.mjs",
"./utils": "./dist/utils/index.mjs"
},
"scripts": {
"build": "obuild",
"codeup": "jiti ./dist/cli/index.mjs",
"lint": "oxlint && oxfmt --check",
"format": "automd && oxlint --fix && oxfmt",
"prepack": "pnpm build",
"play": "jiti playground",
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags && pnpm build --stub",
"test": "pnpm lint && pnpm typecheck",
"typecheck": "tsgo --noEmit --skipLibCheck"
},
"dependencies": {
"citty": "^0.2.0",
"confbox": "^0.2.2",
"consola": "^3.4.2",
"execa": "^9.6.1",
"giget": "^3.1.1",
"jiti": "^2.6.1",
"nypm": "^0.6.4",
"ohash": "^2.0.11",
"pathe": "^2.0.3",
"pkg-types": "^2.3.0"
},
"devDependencies": {
"@types/node": "^25.1.0",
"@typescript/native-preview": "^7.0.0-dev.20260129.1",
"automd": "^0.4.2",
"changelogen": "^0.6.2",
"obuild": "^0.4.14",
"oxfmt": "^0.27.0",
"oxlint": "^1.42.0",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.28.2"
}