-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.7 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.7 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
40
41
42
43
44
45
46
47
48
{
"name": "@cortexcloud/cortex-ui-core",
"version": "0.0.306",
"description": "Cortex-UI is Web Component develop from Cortex Design System from Hlab Designer Team.",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"prod": "yarn run clear-cache & yarn build & yarn convert-scss & yarn set-icons & yarn convert-cbox-attribute & yarn convert-cbox & yarn styles-mapper-cbox & yarn compress-js & yarn export-components & yarn public",
"compress-js": "yarn gulp compress",
"convert-scss": "yarn sass styles/scss/main.scss styles/css/cortex-ui.css --style compressed",
"convert-cbox-attribute": "yarn sass styles/scss/c-box/attributes/index.scss styles/css/c-box.attribute.css --style compressed",
"convert-cbox": "yarn sass styles/scss/c-box/utils/index.scss styles/css/c-box.utils.css --style compressed",
"export-components": "node script/export.script.js",
"public": "node script/publish.script.js",
"clear-cache": "rm -rf cx",
"styles-mapper-cbox": "node script/styles-mapper-cbox",
"set-icons": " node script/icon-name.script.js & node script/icons-registry.script.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cortexcloud/cortex-ui-core.git"
},
"keywords": [
"Cortex-UI"
],
"author": "Cortex-UI Team",
"license": "H Lab Co., Ltd.",
"bugs": {
"url": "https://github.com/cortexcloud/cortex-ui-core/issues"
},
"files": [
"cx/**/*.js",
"cx/*.js",
"cx/**/*.d.ts",
"styles/css/*.css"
],
"dependencies": {
"@types/react": "^18.0.27",
"lit": "^2.6.1"
},
"devDependencies": {
"gulp": "^4.0.2",
"gulp-uglify": "^3.0.2",
"sass": "^1.58.0",
"uglify-js": "^3.17.4"
}
}