-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.57 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.57 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "create-rigg",
"version": "0.1.1",
"description": "Create Node.js TypeScript projects using the Vite+ Toolchain - for everything outside the browser.",
"keywords": [
"backend",
"create-rigg",
"express",
"fastify",
"framework",
"hono",
"node",
"nodejs",
"oxfmt",
"oxlint",
"rigg",
"scaffolder",
"toolchain",
"tsdown",
"tsx",
"typescript",
"vite+",
"vite-plus",
"viteplus",
"vitest"
],
"license": "MIT",
"author": "Espen Steen",
"repository": {
"type": "git",
"url": "https://github.com/ehs5/rigg.git"
},
"bin": {
"create-rigg": "./dist/index.mjs"
},
"files": [
"dist",
"template"
],
"type": "module",
"scripts": {
"test": "vitest",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"check": "oxlint && oxfmt --check && tsc --noEmit",
"dev": "tsx src/index.ts",
"build": "tsdown src/index.ts",
"prepublishOnly": "git diff --exit-code && git diff --cached --exit-code && oxlint && oxfmt && tsc --noEmit && vitest run && pnpm build"
},
"dependencies": {
"@clack/prompts": "^1.1.0",
"cross-spawn": "^7.0.6",
"mri": "^1.2.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/node": "^25.5.0",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"tsdown": "^0.21.7",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"engines": {
"node": ">=22.12.0"
},
"packageManager": "[email protected]"
}