-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.23 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.23 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
{
"name": "create-vitnode-app",
"version": "1.2.0-canary.70",
"description": "Create a new VitNode app in seconds.",
"author": "VitNode Team",
"license": "MIT",
"homepage": "https://vitnode.com",
"repository": {
"type": "git",
"url": "git+https://github.com/aXenDeveloper/vitnode.git",
"directory": "packages/create-vitnode-app"
},
"type": "module",
"bin": {
"create-vitnode-app": "dist/src/index.js"
},
"files": [
"dist",
"copy-of-vitnode-app",
"copy-of-vitnode-plugin",
"eslint",
"eslint-react"
],
"scripts": {
"build:scripts": "tsc && node dist/src/prepare/prepare.js",
"start:scripts": "node dist/src/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"vitnode",
"react",
"hono.js",
"next.js",
"typescript"
],
"dependencies": {
"@inquirer/prompts": "^7.10.1",
"commander": "^14.0.2",
"ora": "^9.0.0",
"picocolors": "^1.1.1",
"validate-npm-package-name": "^7.0.0"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@types/prompts": "^2.4.9",
"@types/validate-npm-package-name": "^4.0.2",
"@vitnode/config": "workspace:*",
"eslint": "^9.39.1",
"typescript": "^5.9.3"
}
}