-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1022 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1022 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
37
38
39
40
41
42
43
{
"name": "create-web-cli",
"version": "0.1.0",
"private": true,
"description": "A modern frontend project initializer with multi-stack support",
"type": "module",
"scripts": {
"dev": "pnpm -r run dev",
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"lint": "pnpm -r run lint",
"clean": "rimraf **/node_modules **/dist",
"changeset": "changeset",
"version": "changeset version",
"publish": "pnpm build && changeset publish"
},
"keywords": [
"cli",
"generator",
"scaffold",
"web",
"react",
"vue",
"nextjs",
"typescript"
],
"author": "Liam",
"license": "MIT",
"packageManager": "pnpm@10.9.0",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.4",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
}
}