-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.75 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
{
"name": "@jynxio/create-app",
"author": "Jynxio",
"description": "A CLI tool for creating app templates interactively",
"version": "0.10.1",
"license": "MIT",
"type": "module",
"bin": {
"create-app": "./index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"index.js",
"template-react",
"template-react/.gitignore",
"!template-react/pnpm-lock.yaml",
"!template-react/package-lock.json",
"template-solid",
"template-solid/.gitignore",
"!template-solid/pnpm-lock.yaml",
"!template-solid/package-lock.json",
"template-vue",
"template-vue/.gitignore",
"!template-vue/pnpm-lock.yaml",
"!template-vue/package-lock.json",
"template-astro",
"template-astro/.gitignore",
"!template-astro/pnpm-lock.yaml",
"!template-astro/package-lock.json",
"template-vanilla",
"template-vanilla/.gitignore",
"!template-vanilla/pnpm-lock.yaml",
"!template-vanilla/package-lock.json",
"template-next",
"template-next/.gitignore",
"template-next/next-env.d.ts",
"!template-next/pnpm-lock.yaml",
"!template-next/package-lock.json"
],
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jynxio/create-app"
},
"bugs": {
"url": "https://github.com/jynxio/create-app/issues"
},
"homepage": "https://github.com/jynxio/create-app",
"scripts": {
"build": "unbuild",
"prerelease": "npm run build",
"release": "npm publish --access public",
"check:js": "biome lint --write",
"check:style": "prettier --write \"**/*.{html,vue,xml,yml,yaml,css,scss,sass,less,postcss}\" && biome format --write",
"check:all": "npm run check:js && npm run check:style",
"prepare": "husky",
"lintstaged": "lint-staged",
"commitlint": "commitlint --edit"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.14.9",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"typescript": "^5.5.3",
"unbuild": "^2.0.0"
},
"dependencies": {
"@inquirer/input": "^2.2.1",
"@inquirer/select": "^2.3.10",
"chalk": "^5.3.0",
"fs-extra": "^11.2.0"
}
}