-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 975 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 975 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
{
"name": "@ghom/nano-cli",
"author": "ghom",
"license": "ISC",
"version": "1.0.0",
"description": "Nano command line interface",
"main": "dist/index.js",
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": false,
"useTabs": false
},
"scripts": {
"prettier": "prettier src package.json readme.md tsconfig.json --write",
"build": "git rm -r --ignore-unmatch -f ./dist && npm run prettier && tsc",
"start": "npm run build && node .",
"precommit": "npm run prettier && git add *",
"commit": "git commit -m continue",
"push": "npm run commit && git push origin master"
},
"keywords": [
"discord.js",
"bot",
"typescript",
"template",
"nano-bot"
],
"devDependencies": {
"@types/node": "^14.0.27",
"@types/yargs": "^15.0.5",
"prettier": "^2.0.5",
"typescript": "4.0.2"
},
"dependencies": {
"gulp": "^4.0.2",
"yargs": "^16.0.3"
}
}