Skip to content

Commit ac92140

Browse files
committed
chore: init
0 parents  commit ac92140

File tree

5 files changed

+1541
-0
lines changed

5 files changed

+1541
-0
lines changed

.gitignore

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# 编译生成的文件
2+
**/dist
3+
**/build
4+
**/out
5+
6+
# 开发过程中产生的文件
7+
**/node_modules
8+
**/bower_components
9+
**/jspm_packages
10+
**/flow-typed
11+
**/coverage
12+
13+
# 自动生成的文件和文件夹
14+
**/target
15+
**/.idea
16+
**/vendor
17+
**/tmp
18+
19+
# 常见的日志文件
20+
**/*.log
21+
**/*.log.*
22+
23+
# 常见的编辑器缓存文件
24+
**/*.swp
25+
**/*.swo
26+
**/*.swn
27+
28+
# 常见的文档编辑软件产生的文件
29+
~$*
30+
*.~
31+
*.bak
32+
*.tmp
33+
34+
# OSX 系统文件
35+
**/.DS_Store
36+
37+
# Windows 系统文件
38+
**/Thumbs.db
39+
**/Desktop.ini

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 Jwc.js
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# create-jwc
2+

package.json

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "create-jwc",
3+
"version": "0.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"type": "module",
7+
"scripts": {
8+
"dev": "unbuild --stub",
9+
"build": "unbuild",
10+
"typecheck": "tsc --noEmit",
11+
"prepublishOnly": "npm run build"
12+
},
13+
"keywords": [
14+
"jwcjs"
15+
],
16+
"author": "JwcJS",
17+
"license": "MIT",
18+
"devDependencies": {
19+
"@types/minimist": "^1.2.2",
20+
"@types/node": "^18.11.17",
21+
"@types/prompts": "^2.4.2",
22+
"cross-spawn": "^7.0.3",
23+
"kolorist": "^1.6.0",
24+
"minimist": "^1.2.7",
25+
"prompts": "^2.4.2",
26+
"ts-node": "^10.9.1",
27+
"typescript": "^4.9.4",
28+
"unbuild": "^1.0.2"
29+
}
30+
}

0 commit comments

Comments
 (0)