-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.47 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.47 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
{
"name": "@involvex/auto-vue",
"version": "0.1.9",
"description": "Full automated Vue Setup with 3 git branches: main, dev, github pages",
"type": "module",
"bin": {
"create-autovue": "bin/create-autovue.js"
},
"files": [
"bin",
"template",
"locales"
],
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"prepare": "husky",
"format": "prettier --write . --ignore-path .prettierignore",
"format:check": "prettier --check . --ignore-path .prettierignore",
"release": "standard-version",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"fix": "npm run format && npm run lint:fix",
"build": "rolldown -c rolldown.config.ts && prettier --write bin/create-autovue.js",
"snapshot": "node ./scripts/snapshot.mjs",
"pretest": "npm run build && npm run snapshot",
"test": "zx ./scripts/test.mjs",
"test:unit": "vitest",
"preversion": "git fetch && git status -uno | grep -q 'Your branch is up to date'",
"postversion": "zx ./scripts/postversion.mjs",
"prepublishOnly": "npm run build",
"deploy": "node -e \"const {platform} = require('os'); if (platform() === 'win32') { require('child_process').execSync('powershell -ExecutionPolicy Bypass -File ./scripts/deploy.ps1', {stdio: 'inherit'}); } else { require('child_process').execSync('zx ./scripts/deploy.mjs', {stdio: 'inherit'}); }\"",
"deploy:ps1": "powershell -ExecutionPolicy Bypass -File ./scripts/deploy.ps1",
"deploy:bat": "scripts\\deploy.bat",
"deploy:zx": "zx ./scripts/deploy.mjs",
"deploy:full": "npm run build && npm run format && npm run lint:fix && npm run release && npm run git:sync",
"git:sync": "git add . && git commit -m \"chore: automated deployment $(date +'%Y-%m-%d %H:%M:%S')\" && git push origin main && (git tag -a v$(node -p \"require('./package.json').version\") -m \"Release v$(node -p \"require('./package.json').version\")\" 2>/dev/null || echo \"Tag already exists\") && git push origin --tags",
"git:tag": "git tag -a v$(node -p \"require('./package.json').version\") -m \"Release v$(node -p \"require('./package.json').version\")\"",
"git:push": "git push origin main && git push origin --tags",
"sync": "npm run git:sync"
},
"repository": {
"type": "git",
"url": "git+https://github.com/involvex/auto-vue.git"
},
"keywords": [
"create-vue",
"create-autovue",
"vue",
"vuejs",
"vue-setup",
"npm",
"node"
],
"author": "involvex",
"license": "MIT",
"homepage": "https://github.com/involvex/auto-vue#readme",
"devDependencies": {
"@clack/prompts": "^0.11.0",
"@eslint/eslintrc": "^3.2.0",
"@tsconfig/node22": "^22.0.2",
"@types/eslint": "^9.6.1",
"@types/node": "^22.18.6",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"@vue/create-eslint-config": "^0.12.2",
"@vue/tsconfig": "^0.8.1",
"ejs": "^3.1.10",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.3",
"picocolors": "^1.1.1",
"prettier": "3.6.2",
"rolldown": "1.0.0-beta.40",
"rollup-plugin-license": "^3.6.0",
"standard-version": "^9.5.0",
"typescript-eslint": "^8.45.0",
"vitest": "^3.2.4",
"zx": "^8.8.4"
},
"lint-staged": {
"*.{js,ts,vue,json}": [
"prettier --write"
]
},
"publishConfig": {
"access": "public",
"provenance": true
}
}