-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 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
72
73
74
75
76
77
{
"name": "@zptxdev/skeleton",
"version": "4.1.3",
"type": "module",
"engines": {
"node": ">=18.12.0"
},
"description": "Skeleton for ZPTX projects, containing the base for our Discord projects",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"files": [
"dist/**"
],
"exports": "./dist/index.js",
"scripts": {
"build": "rimraf dist/ && tsc",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZPTXDev/Skeleton.git"
},
"keywords": [
"discord",
"reusable",
"skeleton",
"ZPTX"
],
"author": "ZPTXDev",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ZPTXDev/Skeleton/issues"
},
"homepage": "https://github.com/ZPTXDev/Skeleton#readme",
"release": {
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"devDependencies": {
"@jest/types": "^30.0.0-alpha.5",
"@swc/core": "^1.5.29",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"jest": "^30.0.0-alpha.5",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"dependencies": {
"@zptxdev/zptx-lib": "^1.1.0",
"discord.js": "^14.15.3",
"lodash-es": "^4.17.21",
"winston": "^3.13.0"
}
}