-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 878 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 878 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
{
"name": "cmdk-base",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@types/node": "^22.10.7",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"bunchee": "^6.0.4",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^2.3.3",
"eslint-plugin-react": "^7.37.3",
"git-cz": "^4.9.0",
"prettier": "^3.2.5",
"turbo": "^2.3.3",
"typescript": "5.5.4",
"typescript-eslint": "^8.19.0"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
},
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
}
}