@6thbridge/hexa 0.0.0-pr70-116 → 0.0.0-pr72-123
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +19 -14
package/package.json
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@6thbridge/hexa",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-pr72-123",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "git+https://github.com/DexlerNG/payfusion-component-library.git",
|
|
7
|
+
"directory": "packages/6thbridge-hexa"
|
|
8
|
+
},
|
|
4
9
|
"main": "dist/index.js",
|
|
5
10
|
"types": "dist/index.d.ts",
|
|
6
11
|
"exports": {
|
|
@@ -14,6 +19,18 @@
|
|
|
14
19
|
"require": "./dist/output.css"
|
|
15
20
|
}
|
|
16
21
|
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"lint": "eslint . --max-warnings 0",
|
|
24
|
+
"generate:component": "turbo gen react-component",
|
|
25
|
+
"check-types": "tsc --noEmit",
|
|
26
|
+
"reset": "rimraf .turbo node_modules && rimraf dist",
|
|
27
|
+
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
|
|
28
|
+
"build:style": "tailwindcss -i ./src/styles/input.css -o ./dist/output.css",
|
|
29
|
+
"dev:style": "tailwindcss -i ./src/styles/input.css -o ./dist/output.css --watch",
|
|
30
|
+
"build-fast": "tsup src/index.ts --format=esm,cjs --no-dts --watch",
|
|
31
|
+
"build": "tsup src/index.ts --format=esm,cjs --dts --clean --minify --sourcemap && pnpm run build:style",
|
|
32
|
+
"dev": "concurrently \"pnpm run build-fast\" \"pnpm run dev:style\""
|
|
33
|
+
},
|
|
17
34
|
"devDependencies": {
|
|
18
35
|
"@eslint/js": "^9.17.0",
|
|
19
36
|
"@turbo/gen": "^1.12.4",
|
|
@@ -87,17 +104,5 @@
|
|
|
87
104
|
"resolutions": {
|
|
88
105
|
"@radix-ui/react-dismissable-layer": "1.1.0",
|
|
89
106
|
"@radix-ui/react-focus-scope": "1.1.0"
|
|
90
|
-
},
|
|
91
|
-
"scripts": {
|
|
92
|
-
"lint": "eslint . --max-warnings 0",
|
|
93
|
-
"generate:component": "turbo gen react-component",
|
|
94
|
-
"check-types": "tsc --noEmit",
|
|
95
|
-
"reset": "rimraf .turbo node_modules && rimraf dist",
|
|
96
|
-
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
|
|
97
|
-
"build:style": "tailwindcss -i ./src/styles/input.css -o ./dist/output.css",
|
|
98
|
-
"dev:style": "tailwindcss -i ./src/styles/input.css -o ./dist/output.css --watch",
|
|
99
|
-
"build-fast": "tsup src/index.ts --format=esm,cjs --no-dts --watch",
|
|
100
|
-
"build": "tsup src/index.ts --format=esm,cjs --dts --clean --minify --sourcemap && pnpm run build:style",
|
|
101
|
-
"dev": "concurrently \"pnpm run build-fast\" \"pnpm run dev:style\""
|
|
102
107
|
}
|
|
103
|
-
}
|
|
108
|
+
}
|