-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.25 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
{
"name": "create-mugnavo",
"version": "0.5.0",
"description": "Create a project using Mugnavo templates.",
"homepage": "https://github.com/mugnavo/create-mugnavo#readme",
"bugs": {
"url": "https://github.com/mugnavo/create-mugnavo/issues"
},
"license": "MIT",
"author": "Nathaniel Tampus <nat@nize.ph>",
"repository": {
"type": "git",
"url": "git+https://github.com/mugnavo/create-mugnavo.git"
},
"bin": "./dist/index.mjs",
"files": [
"dist"
],
"type": "module",
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"lint": "oxlint --type-aware --type-check",
"lint:fix": "oxlint --type-aware --type-check --fix",
"format": "oxfmt",
"format:check": "oxfmt --check",
"check": "pnpm run format && pnpm run lint",
"deps": "pnpm dlx taze@latest -Ilw",
"test": "vitest",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@clack/prompts": "^1.4.0",
"@types/node": "^24.12.4",
"bumpp": "^11.1.0",
"citty": "^0.2.2",
"giget": "^3.2.0",
"oxfmt": "^0.49.0",
"oxlint": "^1.64.0",
"oxlint-tsgolint": "^0.22.1",
"tinyexec": "^1.1.2",
"tsdown": "^0.22.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
},
"engines": {
"node": ">=24"
}
}