-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 2.49 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
94
95
96
97
98
99
{
"name": "chaka",
"version": "4.1.1",
"author": "K.Utsunomiya",
"license": "MIT",
"description": "A Node CLI that generates minimal project templates of modern web development.",
"keywords": [
"cli",
"create-project",
"react.js",
"next.js"
],
"homepage": "https://chakafire.netlify.app/",
"repository": {
"type": "git",
"url": "https://github.com/nemuvski/chaka.git"
},
"bugs": {
"url": "https://github.com/nemuvski/chaka/issues"
},
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"engines": {
"node": ">=16.0.0"
},
"main": "dist/index.js",
"bin": {
"chaka": "bin/run"
},
"scripts": {
"format": "prettier --check './**/*.{js,ts}'",
"format:fix": "prettier --write './**/*.{js,ts}'",
"lint": "eslint . --ext .ts",
"typecheck": "tsc --noEmit",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"build": "rimraf dist && tsc -b",
"prepack": "npm run build && oclif manifest oclif.manifest.json",
"postpack": "rimraf oclif.manifest.json"
},
"dependencies": {
"@oclif/core": "^2.8.12",
"@oclif/plugin-help": "^5.2.12",
"adm-zip": "^0.5.10",
"fs-extra": "^11.1.1",
"node-downloader-helper": "^2.1.7",
"tmp-promise": "^3.0.3"
},
"devDependencies": {
"@oclif/test": "^2",
"@types/adm-zip": "^0.5.0",
"@types/chai": "^4",
"@types/fs-extra": "^11.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.6",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"chai": "^4.3.7",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-regexp": "^1.15.0",
"mocha": "^10.2.0",
"oclif": "^3.9.1",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"oclif": {
"bin": "chaka",
"dirname": "chaka",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " ",
"topics": {
"react": {
"description": "Create a React.js project template"
},
"next": {
"description": "Create a Next.js project template"
},
"remix": {
"description": "Create a Remix.js project template"
},
"gatsby": {
"description": "Create a Gatsby.js project template"
},
"svelte": {
"description": "Create a Svelte.js project template"
}
}
}
}