-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
51 lines (51 loc) · 1.75 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
51
{
"private": true,
"name": "@oxygen-ui/workspace",
"version": "2.0.0",
"description": "The Design System powering WSO2 products.",
"author": "WSO2",
"license": "Apache-2.0",
"homepage": "https://github.com/wso2/oxygen-ui#readme",
"bugs": {
"url": "https://github.com/wso2/oxygen-ui/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/wso2/oxygen-ui"
},
"keywords": [
"wso2",
"wso2-design-system",
"oxygen-ui"
],
"scripts": {
"clean": "pnpm clean:lock-files && pnpm clean:build && pnpm clean:node-modules",
"clean:build": "pnpm rimraf -G **/**/dist && pnpm rimraf -G **/**/build",
"clean:lock-files": "pnpm rimraf -G **/**/package-lock.json && pnpm rimraf -G **/**/pnpm-lock.yaml && pnpm rimraf -G **/**/yarn.lock",
"clean:node-modules": "pnpm rimraf -G **/**/node_modules && pnpm rimraf -G node_modules",
"build": "nx run-many --target=build --parallel",
"build:docs": "pnpm --filter @oxygen-ui/react build:storybook && pnpm --filter @oxygen-ui/docs build:static",
"lint": "nx run-many --target=lint --parallel",
"lint:es": "nx run-many --target=lint:es --parallel",
"lint:styles": "nx run-many --target=lint:styles --parallel",
"release": "release-it",
"test": "nx run-many --target=test --parallel",
"typecheck": "nx run-many --target=typecheck --parallel"
},
"devDependencies": {
"@release-it/conventional-changelog": "^5.1.1",
"nx": "15.2.1",
"release-it": "^15.9.1",
"rimraf": "^3.0.2",
"detect-indent": "^6.0.0",
"detect-newline": "^3.1.0",
"semver": "^7.1.3",
"url-join": "^4.0.1",
"validate-peer-dependencies": "^1.0.0",
"walk-sync": "^2.0.2",
"yaml": "^2.1.1"
},
"publishConfig": {
"access": "restricted"
}
}