-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "@buape/utilities",
"description": "Utility packages published by Buape Studios",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"coverage": "vitest run --coverage",
"docs": "typedoc",
"dev": "dotenv -- turbo run dev",
"format": "biome format --write .",
"lint": "biome check . --apply",
"preinstall": "only-allow pnpm",
"pretty": "pnpm run format && pnpm run lint",
"test": "dotenv -- vitest",
"changeset": "changeset add",
"publish": "changeset version && pnpm run build && changeset publish"
},
"engines": {
"node": ">=16.20.0"
},
"dependencies": {
"@biomejs/biome": "^1.5.2",
"@changesets/cli": "^2.27.1",
"dotenv-cli": "^7.3.0",
"prettier": "latest",
"tsc-watch": "^6.0.4",
"turbo": "latest",
"unbuild": "^2.0.0"
},
"devDependencies": {
"only-allow": "^1.2.1",
"rimraf": "^5.0.5",
"typedoc": "^0.25.7",
"typescript": "^5.3.3",
"vitest": "^1.2.1"
},
"workspaces": [
"packages/*"
],
"packageManager": "pnpm@9.9.0"
}