-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.49 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.49 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@involvex/create-wizard",
"version": "4.0.8",
"description": "create everything with ease interactive ",
"keywords": [
"cli",
"create-apps",
"npm",
"init",
"node"
],
"homepage": "https://github.com/involvex/create-wizard#readme",
"bugs": {
"url": "https://github.com/involvex/create-wizard/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/involvex/create-wizard.git"
},
"license": "ISC",
"author": "Involvex",
"files": [
"dist",
"README.md",
"LICENSE",
"template-library"
],
"type": "module",
"main": "dist/create-wizard.js",
"bin": {
"create-wizard": "dist/create-wizard.js"
},
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"test": "bun run build && vitest --run --exclude \"template-library/**\" --exclude \"e2e-test-project/**\"",
"format:check": "bunx prettier --check .",
"format": "bunx prettier --write .",
"lint": "bunx eslint . --config eslint.config.js",
"lint:fix": "bunx eslint . --config eslint.config.js --fix",
"check": "bun run lint:fix && bun run format",
"coverage": "vitest run --coverage",
"prebuild": "bun run check",
"build": "bunx esbuild scripts/create-app.js --bundle --platform=node --target=node22 --format=esm --external:yoctocolors-cjs --external:mute-stream --external:safer-buffer --external:iconv-lite --external:cross-spawn --external:graceful-fs --external:fs-extra --external:inquirer --external:cli-progress --external:debug --outfile=dist/create-wizard.js --banner:js=\"#!/usr/bin/env node\"",
"start": "bun run scripts/create-app.js",
"docs:start": "cd docs && bun start",
"docs:build": "cd docs && bun run build",
"docs:serve": "cd docs && bun run serve",
"template:create": "node scripts/create-template.js",
"prerelease": "bun run check",
"test:e2e": "bun run scripts/e2e-test.js",
"release": "bun run scripts/release.js",
"debug": "cross-env DEBUG=TRUE && bun run scripts/create-app.js --debug=TRUE ",
"review": "bun run scripts/ai-review.js"
},
"dependencies": {
"@mdx-js/react": "^3.1.1",
"@vue/test-utils": "^2.4.6",
"cli-progress": "^3.12.0",
"clsx": "^2.1.1",
"execa": "^9.6.1",
"fs-extra": "^11.3.4",
"inquirer": "^13.4.1",
"ora": "^9.3.0",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"vue": "^3.5.32"
},
"devDependencies": {
"@azure-rest/ai-inference": "^1.0.0-beta.6",
"@azure/core-auth": "^1.10.1",
"@azure/core-sse": "^2.3.0",
"@clack/prompts": "^1.2.0",
"@docusaurus/eslint-plugin": "^3.10.0",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@vitejs/plugin-react": "^5.2.0",
"@vitejs/plugin-vue": "^6.0.6",
"@vitest/coverage-v8": "^4.1.4",
"conventional-changelog-cli": "^5.0.0",
"cross-env": "^10.1.0",
"ddc-copyright-head": "^1.4.0",
"debug": "^4.4.3",
"dotenv": "^17.4.2",
"esbuild": "^0.27.7",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-license-header": "^0.9.0",
"eslint-plugin-markdownlint": "^0.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"node-fetch": "^3.3.2",
"prettier": "^3.8.3",
"rollup": "^4.60.1",
"typescript-eslint": "^8.58.2",
"vitest": "^4.1.4",
"vitest-preview": "^0.0.3"
},
"overrides": {
"@typescript-eslint/utils": "^8.0.0"
}
}