-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.93 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
{
"name": "ecstar",
"version": "0.0.0-dev",
"description": "The easiest JavaScript/TypeScript Discord bot framework.",
"main": "dist/index.js",
"types": "dist/type",
"repository": "https://github.com/Ecstar-js/Ecstar.git",
"homepage": "https://ecstar.js.org",
"author": "mouse_484",
"license": "MIT",
"scripts": {
"build": "ttsc --project tsconfig.build.json",
"dev": "nodemon --watch src --watch examples --ext ts --exec 'ts-node -r tsconfig-paths/register examples'",
"lint": "eslint --ext .ts .",
"fmt": "prettier --write .",
"fix": "yarn run lint --fix",
"semantic-release": "semantic-release",
"commit": "commitizen",
"document": "typedoc src/index.ts",
"prepare": "husky install"
},
"dependencies": {
"chokidar": "^3.4.3",
"consola": "^2.15.3",
"discord.js": "^14.0.0",
"parsimmon": "^1.18.1",
"split-string": "^6.1.0",
"typedoc": "^0.23.0"
},
"devDependencies": {
"@commitlint/cli": "17.2.0",
"@commitlint/config-conventional": "17.2.0",
"@mouse_484/eslint-config-node": "https://eslint-config.mouse484.vercel.app/Node?main",
"@mouse_484/eslint-config-prettier": "https://eslint-config.mouse484.vercel.app/Prettier?main",
"@mouse_484/eslint-config-typescript": "https://eslint-config.mouse484.vercel.app/TypeScript?main",
"@types/node": "18.11.9",
"@types/parsimmon": "1.10.6",
"@types/ws": "8.5.3",
"commitizen": "4.2.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.27.0",
"husky": "8.0.2",
"nodemon": "2.0.20",
"prettier": "2.7.1",
"semantic-release": "19.0.5",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.0",
"ttypescript": "1.5.13",
"typescript": "4.8.4",
"typescript-transform-paths": "3.4.4"
},
"files": [
"dist"
],
"release": {
"branches": [
"main"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}