-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.45 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.45 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
{
"name": "ippo",
"version": "1.0.5",
"description": "A command-line tool to quickly set up a development environment with your chosen framework, language, and stylesheet.",
"keywords": [
"development",
"env",
"setup",
"cli",
"framework",
"typescript",
"scss",
"sass"
],
"homepage": "https://github.com/HoshimuraYuto/ippo",
"bugs": {
"url": "https://github.com/HoshimuraYuto/ippo/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/HoshimuraYuto/ippo.git"
},
"license": "MIT",
"author": "Hoshimura Yuto",
"type": "module",
"main": "./dist/index.mjs",
"bin": {
"ippo": "index.js"
},
"files": [
"config",
"dist",
"index.js"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/eslint__js": "^8.42.3",
"@types/prompts": "^2.4.9",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-check-file": "^2.8.0",
"eslint-plugin-import-x": "^0.5.1",
"eslint-plugin-jsdoc": "^48.2.9",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-sonarjs": "^1.0.3",
"eslint-plugin-unicorn": "^53.0.0",
"eslint-plugin-unused-imports": "^4.0.0",
"globals": "^15.4.0",
"kolorist": "^1.8.0",
"prettier": "^3.3.1",
"prompts": "^2.4.2",
"typescript": "^5.4.5",
"typescript-eslint": "^8.0.0-alpha.10",
"unbuild": "^2.0.0"
}
}