-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.35 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.35 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
{
"name": "@qwik.dev/cli",
"version": "0.0.1",
"description": "Qwik CLI - the official CLI for Qwik projects",
"bin": {
"create-qwik": "./dist/bin/create-qwik.mjs",
"qwik": "./dist/bin/qwik.mjs"
},
"files": [
"dist",
"stubs"
],
"type": "module",
"main": "./dist/src/index.cjs",
"module": "./dist/src/index.mjs",
"exports": {
".": {
"import": "./dist/src/index.mjs",
"require": "./dist/src/index.cjs"
}
},
"scripts": {
"prepare": "git config --local core.hooksPath .githooks || true",
"build": "vp pack",
"test": "node bin/test.ts",
"test:unit": "vp test",
"lint": "vp lint",
"lint:fix": "vp lint --fix",
"format": "vp fmt",
"format:check": "vp check"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"ignore": "^7.0.5",
"kleur": "^4.1.5",
"magic-regexp": "^0.11.0",
"magic-string": "^0.30",
"oxc-parser": "^0.123",
"panam": "^0.3.0",
"semver": "^7.7.4",
"which-pm-runs": "^1.1.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@japa/assert": "^4.0.1",
"@japa/runner": "^4.2.0",
"@types/node": "^24.0.0",
"@types/semver": "^7.7.1",
"@types/which-pm-runs": "*",
"@types/yargs": "*",
"typescript": "^6.0.0",
"vite-plus": "^0.1.15"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@10.33.0"
}