-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
71 lines (71 loc) · 1.82 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
{
"name": "@pikokr/command.ts",
"description": "Discord.js command framework for typescript.",
"packageManager": "[email protected]",
"version": "0.0.0-development",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"devDependencies": {
"@discordjs/ts-docgen": "^0.4.1",
"@swc/core": "1.4.6",
"@types/lodash": "4.14.202",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"all-contributors-cli": "6.26.1",
"discord-api-types": "^0.37.73",
"discord.js": "14.14.1",
"dotenv": "16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"semantic-release": "^23.0.2",
"ts-node": "10.9.2",
"tslog": "^4.9.2",
"tsup": "8.0.2",
"typedoc": "^0.25.11",
"typescript": "^5.4.2",
"utility-types": "^3.11.0"
},
"dependencies": {
"@types/node": "^20.11.25",
"chalk": "^4.1.2",
"lodash": "^4.17.21",
"reflect-metadata": "^0.2.1",
"walk-sync": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/pikokr/command.ts"
},
"scripts": {
"prepack": "yarn build",
"build": "rimraf dist && tsup-node",
"docs:dev": "typedoc",
"docs:build": "typedoc",
"docs": "typedoc --json docs/typedoc-out.json --tsconfig tsconfig.prod.json src/index.ts && ts-node scripts/docs",
"test": "yarn ts-node --swc test",
"lint": "eslint --ignore-path .gitignore .",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"discord.js": "14",
"tslog": "*"
},
"release": {
"branches": [
"stable",
{
"name": "dev",
"prerelease": true
}
]
},
"pnpm": {
"overrides": {
"undici@<=5.28.2": ">=5.28.3"
}
}
}