-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 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
{
"name": "@kakushindev/sapphire-plugins",
"version": "0.0.0",
"private": true,
"description": "Plugins for @sapphire/framework.",
"keywords": [
"js",
"typescript"
],
"homepage": "https://kakushin.dev/",
"bugs": {
"url": "https://github.com/kakushindev/sapphire-plugins/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kakushindev/sapphire-plugins.git"
},
"license": "AGPL-3.0",
"author": "Kakushin Devs <hello@kakushindev.dev>",
"workspaces": [
"packages/*"
],
"scripts": {
"compile": "turbo run build",
"clean": "rimraf \"packages/**/dist\" \"packages/**/.turbo\"",
"docs": "typedoc",
"format": "turbo run format",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"release": "turbo run build && changeset version && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@sapphire/ts-config": "^5.0.0",
"@types/node": "^20.9.0",
"rimraf": "5.0.5",
"turbo": "latest",
"typedoc": "^0.25.3",
"typedoc-plugin-djs-links": "^2.1.1",
"typedoc-plugin-mdn-links": "^3.1.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=7.0.0"
}
}