forked from discordeno/discordeno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
{
"name": "discordeno-monorepo",
"version": "21.0.0",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo build",
"build:type": "turbo build:type",
"build:doc": "typedoc --options ./typedoc.json && node scripts/finalizeTypedocs.js",
"build:watch": "turbo watch build build:type",
"release-build": "turbo build build:type",
"test:unit": "turbo test:unit",
"test:unit-coverage": "turbo test:unit-coverage",
"test:bun-unit": "turbo test:bun-unit",
"test:deno-unit": "turbo test:deno-unit",
"test:integration": "turbo test:integration",
"test:e2e": "turbo test:e2e",
"test:type": "turbo build:type",
"test:test-type": "turbo test:test-type",
"fmt": "turbo fmt",
"lint": "turbo lint",
"format": "biome format --write",
"postinstall": "husky"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"turbo": "^2.3.3",
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^4.4.0",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*": "biome check --no-errors-on-unmatched --write"
}
}