-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.21 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
44
45
46
47
48
49
50
{
"name": "cds",
"version": "0.0.0",
"description": "Continuum Design System (CDS) by Verve",
"license": "MIT",
"private": true,
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cds-design/CDS.git"
},
"bugs": {
"url": "https://github.com/cds-design/CDS/issues"
},
"homepage": "https://github.com/cds-design/CDS#readme",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"commit": "czg --config=\"./cz.js\"",
"dev": "turbo run dev",
"format": "pnpm global:format && turbo run format",
"global:format": "prettier --write \"**/*.{ts,tsx,md,mdx,json,js}\" '!**/*/{dist,.next,.turbo}*/**'",
"lint": "turbo run lint",
"prepare": "husky install"
},
"maintainers": [
{
"name": "Rajaniraiyn R",
"email": "[email protected]",
"url": "https://rajaniraiyn.github.io"
},
{
"name": "Tejaswini T",
"email": "[email protected]",
"url": "https://teejaswan.github.io"
}
],
"packageManager": "[email protected]",
"devDependencies": {
"czg": "^1.9.0",
"husky": "^8.0.3",
"prettier": "^3.2.5",
"turbo": "^1.10.16"
}
}