-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1001 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1001 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
{
"name": "create-qwik",
"description": "Interactive CLI for create Qwik projects and adding features.",
"version": "2.0.0-beta.14",
"author": "Qwik Team",
"bin": "./create-qwik.mjs",
"bugs": "https://github.com/QwikDev/qwik/issues",
"devDependencies": {
"@clack/prompts": "0.11.0",
"@types/yargs": "17.0.33",
"kleur": "4.1.5",
"yargs": "17.7.2"
},
"engines": {
"node": "^18.17.0 || ^20.3.0 || >=21.0.0",
"npm": ">=10.0.0",
"pnpm": ">=8.0.0",
"yarn": ">=3.0.0"
},
"engines-annotation": "Mostly required by sharp which needs a Node-API v9 compatible runtime",
"files": [
"README.md",
"create-qwik.mjs",
"dist"
],
"homepage": "https://qwik.dev/",
"keywords": [
"generator",
"qwik",
"starters",
"template"
],
"license": "MIT",
"main": "./dist/index.mjs",
"repository": {
"type": "git",
"url": "https://github.com/QwikDev/qwik.git",
"directory": "packages/create-qwik"
},
"type": "module"
}