-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1017 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1017 Bytes
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
{
"name": "@epiijs/create",
"version": "0.1.4",
"description": "Create web app powered by epiijs.",
"type": "module",
"main": "start.js",
"bin": {
"create-epii": "start.js"
},
"scripts": {
"clean": "rm -rf build",
"build": "npm run clean && eslint --ext .ts && tsc"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epiijs/create.git"
},
"keywords": [
"epii",
"create",
"template"
],
"author": "Sartrey Lee <sartrey@163.com> (https://sartrey.cn)",
"license": "MIT",
"bugs": {
"url": "https://github.com/epiijs/create/issues"
},
"homepage": "https://github.com/epiijs/create#readme",
"devDependencies": {
"@epiijs/eslint-config": "^0.1.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.10.6",
"@types/prompts": "^2.4.9",
"eslint": "^8.56.0"
},
"dependencies": {
"glob": "^10.3.10",
"lodash-es": "^4.17.21",
"prompts": "^2.4.2"
}
}