-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.55 KB
/
package.json
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
{
"name": "@selemondev/create-vue3-app",
"version": "0.0.3",
"description": "The Next Generation Vue Scaffolding Tool ✨",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "esno src/index.ts",
"build:package": "tsup-node src/index.ts --format cjs,esm --clean --dts --minify --shims",
"generate:release": "npx changelogen@latest --release",
"package:beta": "npm run build && npm publish --tag beta",
"package": "pnpm build:package && npm publish --access=public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"bin": {
"@selemondev/create-vue3-app": "./dist/index.js"
},
"files": [
"dist",
"src",
"template"
],
"keywords": [
"@selemondev/create-vue3-app",
"Vue CLI",
"Vue 3 CLI",
"Vite CLI",
"Vite",
"Vue 3",
"VueUse",
"TypeScript"
],
"author": "Selemondev",
"license": "MIT",
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.30",
"@types/prompts": "^2.4.9",
"@types/validate-npm-package-name": "^4.0.2",
"conf": "^12.0.0",
"esno": "^4.0.0",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"ejs": "^3.1.9",
"fs-extra": "^11.2.0",
"prompts": "^2.4.2",
"prettier": "^3.2.5",
"ora": "^8.0.1",
"validate-npm-package-name": "^5.0.0"
}
}