This repository has been archived by the owner on Oct 28, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.54 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
{
"name": "@kaaaxcreators/create",
"version": "1.0.4",
"description": "Basic Typescript ESLint Template",
"main": "dist/index.js",
"bin": {
"create": "dist/index.js"
},
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"release": "npx semantic-release",
"lint": "eslint . --ignore-path ./.gitignore",
"lint:fix": "eslint . --ignore-path ./.gitignore --fix"
},
"keywords": [],
"author": "Bernd Storath <[email protected]>",
"license": "MIT",
"devDependencies": {
"@kaaaxcreators/config": "^1.1.2",
"@types/node": "^18.11.7",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"prettier": "^2.3.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"dependencies": {
"axios": "^1.1.3",
"commander": "^9.1.0",
"execa": "^5.1.1",
"handlebars": "^4.7.7",
"ora": "5.4.1"
},
"files": [
"dist",
"templates"
],
"repository": {
"url": "git+https://github.com/kaaaxcreators/create.git",
"type": "git"
},
"homepage": "https://github.com/kaaaxcreators/create#readme",
"bugs": {
"url": "https://github.com/kaaaxcreators/create/issues"
},
"funding": {
"type": "individual",
"url": "https://www.buymeacoffee.com/kaaaxcreators"
},
"publishConfig": {
"access": "public"
}
}