-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.65 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.65 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
{
"name": "opennextjs-cli",
"version": "0.1.0",
"private": true,
"description": "Interactive CLI/TUI tool for setting up and configuring OpenNext.js projects for Cloudflare Workers",
"keywords": [
"opennextjs",
"opennext",
"nextjs",
"cloudflare",
"workers",
"cli",
"tui",
"setup",
"configuration"
],
"repository": {
"type": "git",
"url": "https://github.com/JSONbored/opennextjs-cli"
},
"license": "MIT",
"author": "JSONbored",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"type-check": "turbo run type-check",
"test": "turbo run test",
"workflow:validate": "trunk check .github/workflows",
"changelog:package": "tsx scripts/generate-package-changelog.ts",
"changelog:cli": "pnpm changelog:package opennextjs-cli",
"changelog:mcp": "pnpm changelog:package opennextjs-mcp",
"changelog:preview": "git-cliff --config cliff.toml --latest --unreleased"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^22.10.7",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.18.0",
"git-cliff": "^2.5.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"turbo": "latest",
"typescript": "^5.7.3",
"typescript-eslint": "^8.51.0"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.0"
}