-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 907 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 907 Bytes
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
{
"name": "zeno",
"version": "0.0.1",
"description": "Standalone Node module that generates production-ready NextJS applications from JSON schema definitions",
"private": true,
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"test": "turbo test",
"lint": "turbo lint",
"format": "turbo format",
"changeset": "changeset",
"version": "changeset version",
"release": "turbo build && changeset publish",
"sync": "npx tsx scripts/syncGithubIssues.js"
},
"keywords": [
"nextjs",
"code-generation",
"typescript",
"schema",
"framework"
],
"author": "",
"license": "MIT",
"packageManager": "pnpm@10.13.1",
"devDependencies": {
"@biomejs/biome": "2.1.2",
"@changesets/cli": "^2.29.5",
"@octokit/rest": "22.0.0",
"dotenv": "17.2.1",
"turbo": "^2.5.5",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}