-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "aonic-ui",
"version": "0.0.0",
"description": "A common library for Developer UI components and utilities.",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/redhat-developer/aonic-ui.git"
},
"keywords": [
"React",
"Typescript",
"Component",
"Library",
"Developer",
"Tools",
"Aonic"
],
"author": "Rohit Rai",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/redhat-developer/aonic-ui/issues"
},
"homepage": "https://github.com/redhat-developer/aonic-ui#readme",
"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",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter=docs^... && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"prettier": "^3.2.4",
"turbo": "^1.11.3"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"docs"
]
}