-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.16 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
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
{
"name": "@tomjs/create-app",
"type": "module",
"version": "1.6.1",
"description": "create tomjs web app",
"keywords": [
"tomjs",
"front-end",
"frontend",
"back-end",
"backend",
"create",
"create-app",
"app",
"template",
"vite",
"vue",
"react",
"electron",
"vscode",
"web",
"node"
],
"author": {
"name": "Tom Gao",
"email": "tom@tomgao.cc"
},
"license": "MIT",
"bin": {
"create-app": "dist/index.js"
},
"files": [
"dist",
"templates/**"
],
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.6.0",
"repository": {
"type": "git",
"url": "git+https://github.com/tomjs/create-app.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"dev": "tsup --watch",
"debug": "tsx -r dotenv/config src/index.ts",
"build": "tsup --minify",
"lint": "run-s lint:eslint lint:stylelint lint:prettier",
"lint:eslint": "eslint \"{src,templates}/**/*.{js,cjs,ts,tsx,vue}\" *.{js,cjs,ts} --fix --cache",
"lint:stylelint": "stylelint \"templates/**/*.{css,scss,less,vue,html}\" --fix --cache",
"lint:prettier": "prettier --write .",
"prepare": "husky",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@tomjs/logger": "^1.1.4",
"@tomjs/node": "^2.2.3",
"chalk": "^5.3.0",
"dayjs": "^1.11.13",
"execa": "^9.3.1",
"inquirer": "^10.1.8",
"lodash-es": "^4.17.21",
"meow": "^13.2.0"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@tomjs/commitlint": "^3.3.0",
"@tomjs/eslint": "^3.3.0",
"@tomjs/prettier": "^1.4.1",
"@tomjs/stylelint": "^2.6.1",
"@tomjs/tsconfig": "^1.7.1",
"@types/inquirer": "^9.0.7",
"@types/lodash-es": "^4.17.12",
"@types/node": "^18.19.47",
"@types/prompts": "^2.4.9",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"stylelint": "^16.9.0",
"tsup": "^8.2.4",
"tsx": "^4.19.0",
"type-fest": "^4.26.0",
"typescript": "~5.5.4"
}
}