@lotte-innovate/ui-component-test 0.0.54 → 0.0.58
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +7 -15
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lotte-innovate/ui-component-test",
|
3
3
|
"description": "Lotte UI Library",
|
4
|
-
"version": "0.0.
|
4
|
+
"version": "0.0.58",
|
5
5
|
"private": false,
|
6
6
|
"type": "module",
|
7
7
|
"files": [
|
@@ -10,14 +10,8 @@
|
|
10
10
|
"dist/tailwind.config.js",
|
11
11
|
"dist/globals.css"
|
12
12
|
],
|
13
|
-
"main": "dist/
|
14
|
-
"module": "dist/
|
15
|
-
"exports": {
|
16
|
-
".": {
|
17
|
-
"import": "./dist/esm/index.js",
|
18
|
-
"require": "./dist/cjs/index.js"
|
19
|
-
}
|
20
|
-
},
|
13
|
+
"main": "dist/lib/index.js",
|
14
|
+
"module": "dist/lib/index.js",
|
21
15
|
"types": "dist/lib/index.d.ts",
|
22
16
|
"publishConfig": {
|
23
17
|
"access": "public"
|
@@ -44,23 +38,21 @@
|
|
44
38
|
"scripts": {
|
45
39
|
"dev": "next dev",
|
46
40
|
"lint": "next lint",
|
47
|
-
"prepare": "
|
41
|
+
"prepare": "next build",
|
48
42
|
"start": "next start",
|
49
43
|
"storybook": "cross-env NODE_OPTIONS='--max-old-space-size=8192' storybook dev -p 6006",
|
50
44
|
"chromatic": "cross-env npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN",
|
51
45
|
"compile": "tsc --jsx react-jsx",
|
46
|
+
"build": "next build && npm run compile",
|
52
47
|
"build:css": "npx tailwindcss -i src/app/globals.css -o dist/globals.css --minify",
|
53
48
|
"build-storybook": "storybook build",
|
54
49
|
"clean": "rimraf dist && mkdir dist",
|
55
50
|
"update-tailwind": "node update-tailwind-import.js",
|
56
51
|
"build:all": "npm run clean && npm run compile && node src/utils/move.js && npm run build:css && tsc-alias && npm run update-tailwind",
|
57
|
-
"publish:npm": "npm run build:all && npm publish && node src/utils/post-publish.js"
|
58
|
-
"build": "mkdir dist && rollup && npm run build:cjs & npm run build:esm",
|
59
|
-
"build:cjs": "tsc --p ./cjs/tsconfig.json --outDir ./dist/cjs",
|
60
|
-
"build:esm": "tsc --p ./esm/tsconfig.json --outDir ./dist/esm"
|
52
|
+
"publish:npm": "npm run build:all && npm publish && node src/utils/post-publish.js"
|
61
53
|
},
|
62
54
|
"dependencies": {
|
63
|
-
"@babel/runtime": "^7.
|
55
|
+
"@babel/runtime": "^7.12.0",
|
64
56
|
"@babel/runtime-corejs3": "^7.24.7",
|
65
57
|
"@radix-ui/colors": "^3.0.0",
|
66
58
|
"@radix-ui/react-accordion": "^1.2.0",
|