This repository was archived by the owner on Aug 15, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.55 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.55 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "fpsmath",
"private": true,
"version": "3.5.0",
"homepage": "https://fpsmath.xyz",
"license": "AGPL-3.0-or-later",
"main": "dist/index.js",
"bugs": {
"url": "https://github.com/animafps/fpsmath/issues"
},
"author": {
"name": "Anima",
"email": "animafps@pm.me"
},
"repository": {
"type": "git",
"url": "git+https://github.com/animafps/fpsmath.git"
},
"imports": {
"#lib/*": "./dist/lib/*.js",
"#root/*": "./dist/*.js",
"#lib/types": "./dist/lib/types/index.js",
"#lib/structures": "./dist/lib/structures/index.js"
},
"scripts": {
"lint": "eslint src --ext ts --fix",
"format": "prettier --write {src,tests}/**/*.ts",
"build": "tsc -b src",
"clean": "tsc -b src --clean",
"watch": "tsc -b src -w --preserveWatchOutput",
"dev": "run-p watch start",
"commit": "git-cz",
"cz": "git-cz",
"update": "yarn upgrade-interactive",
"start": "node --enable-source-maps dist/index.js",
"release": "standard-version --infile docs/changelog.md",
"pretty-quick": "pretty-quick --staged --pattern '{src,tests}/**/*.ts'",
"postinstall": "is-ci || husky install"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/node": "^16.11.22",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"lint-staged": "^12.3.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"standard-version": "^9.3.2",
"typescript": "^4.5.5"
},
"dependencies": {
"@discordjs/builders": "^0.12.0",
"@discordjs/collection": "^0.5.0",
"@influxdata/influxdb-client": "^1.22.0",
"@sapphire/decorators": "^4.2.1",
"@sapphire/discord.js-utilities": "^4.6.1",
"@sapphire/framework": "next",
"@sapphire/pieces": "3.2.0",
"@sapphire/plugin-api": "^3.1.4",
"@sapphire/plugin-hmr": "^1.1.1",
"@sapphire/plugin-logger": "^2.1.3",
"@sapphire/time-utilities": "^1.6.0",
"@sapphire/utilities": "^3.3.0",
"@sentry/node": "^6.17.4",
"discord-api-types": "^0.26.1",
"discord.js": "^13.6.0",
"dotenv-cra": "^3.0.2",
"fov-utilities": "^1.1.7",
"tslib": "^2.3.1"
},
"engines": {
"node": "16.x"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"packageManager": "yarn@3.1.1"
}