-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.04 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.04 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@startvibe/create-tauri-app",
"version": "1.1.4",
"description": "A CLI tool to create Tauri 2 + React + TypeScript applications with comprehensive tooling",
"type": "module",
"main": "create.js",
"bin": {
"create-tauri-app": "./create.js"
},
"files": [
"create.js",
"template/**/*"
],
"scripts": {
"create": "node create.js",
"cta": "node create.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"commit": "git-cz",
"preversion": "pnpm lint && pnpm format:check",
"postversion": "git push && git push --tags",
"release:patch": "pnpm preversion && standard-version --release-as patch && git add CHANGELOG.md && pnpm postversion",
"release:minor": "pnpm preversion && standard-version --release-as minor && git add CHANGELOG.md && pnpm postversion",
"release:major": "pnpm preversion && standard-version --release-as major && git add CHANGELOG.md && pnpm postversion"
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "style",
"section": "Styles"
},
{
"type": "refactor",
"section": "Code Refactoring"
},
{
"type": "test",
"section": "Tests"
},
{
"type": "build",
"section": "Build System"
},
{
"type": "ci",
"section": "Continuous Integration"
},
{
"type": "chore",
"section": "Chores"
}
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./cz-config.js"
}
},
"keywords": [
"tauri",
"react",
"typescript",
"template",
"starter",
"vite",
"tailwindcss"
],
"author": "Jianan",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/startvibe/create-tauri-app.git"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"chalk": "^5.6.1",
"commander": "^12.1.0",
"fs-extra": "^11.3.1",
"inquirer": "^9.3.7",
"ora": "^8.2.0",
"validate-npm-package-name": "^5.0.1",
"word-wrap": "^1.2.5"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.35.0",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"commitizen": "^4.3.1",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"prettier": "^3.6.2",
"standard-version": "^9.5.0",
"typescript": "^5.9.2"
}
}