-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 873 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 873 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
34
35
36
37
{
"name": "@pleaseai/code-style-monorepo",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "bun@1.3.10",
"description": "code-style for PleaseAI",
"repository": {
"type": "git",
"url": "https://github.com/pleaseai/code-style.git"
},
"engines": {
"node": ">=22.0.0",
"bun": ">=1.3.10"
},
"workspaces": {
"packages": [
"packages/*",
"docs"
]
},
"scripts": {
"build": "turbo run build",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix --cache",
"release": "turbo run build",
"docs:dev": "cd docs && bun run dev",
"docs:build": "cd docs && bun run build",
"docs:deploy": "cd docs && bun run deploy"
},
"devDependencies": {
"@pleaseai/eslint-config": "workspace:*",
"eslint": "^10.0.3",
"turbo": "^2.0.0",
"typescript": "^6.0.2"
}
}