-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.16 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.16 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
{
"name": "carbon-monorepo",
"version": "0.1.0",
"description": "Monorepo for Carbon code generation and command-line utilities.",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"packages/**/*.{ts,tsx,js,jsx,json}\" \"*.{ts,tsx,js,jsx,json,md}\"",
"type-check": "turbo run type-check"
},
"devDependencies": {
"@types/node": "^24.0.10",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"turbo": "^2.5.4",
"typescript": "^5.8.3"
},
"packageManager": "pnpm@9.6.0",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"pnpm": {
"overrides": {
"@codama/nodes": "1.3.0",
"@codama/visitors-core": "1.3.0",
"@codama/renderers-core": "1.0.16",
"@codama/errors": "1.3.0"
}
}
}