-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 954 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 954 Bytes
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
{
"name": "traque-js",
"private": true,
"packageManager": "pnpm@9.15.0",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"bumpp": "bumpp --no-commit --no-push --no-tag",
"release": "turbo --filter \"./packages/*\" build && bumpp && pnpm publish",
"build:packages": "turbo --filter \"./packages/*\" build",
"publish": "pnpm -r publish --access public --no-git-checks"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-turbo": "^2.4.4",
"prettier": "^3.5.3",
"turbo": "^2.4.4",
"typescript": "5.8.2",
"typescript-eslint": "^8.26.1"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"bumpp": "^10.1.0",
"tinyglobby": "^0.2.12"
}
}