-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
53
54
55
56
57
58
{
"name": "codeup",
"version": "0.0.5",
"description": "Automated Codebase Maintainer.",
"repository": "unjs/codeup",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"default": "./dist/utils/index.mjs"
}
},
"types": "./dist/index.d.ts",
"bin": "./dist/cli/index.mjs",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"codeup": "jiti ./dist/cli/index.mjs",
"lint": "eslint . && prettier -c .",
"lint:fix": "automd && eslint . --fix && prettier -w .",
"prepack": "pnpm build",
"play": "jiti playground",
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags && pnpm build --stub",
"test": "pnpm lint && pnpm test:types",
"test:types": "tsc --noEmit --skipLibCheck"
},
"dependencies": {
"citty": "^0.1.6",
"confbox": "^0.1.7",
"consola": "^3.2.3",
"execa": "^9.4.0",
"giget": "^1.2.3",
"jiti": "^2.3.1",
"nypm": "^0.3.12",
"ohash": "^1.1.4",
"pathe": "^1.1.2",
"pkg-types": "^1.2.0"
},
"devDependencies": {
"@types/node": "^22.7.4",
"automd": "^0.3.10",
"changelogen": "^0.5.7",
"eslint": "^9.12.0",
"eslint-config-unjs": "^0.4.1",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"unbuild": "^2.0.0"
},
"packageManager": "[email protected]"
}