@commandcenterio/convert-ui 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.css +752 -0
- package/dist/index.d.mts +288 -0
- package/dist/index.d.ts +288 -0
- package/dist/index.js +1095 -0
- package/dist/index.mjs +1038 -0
- package/package.json +41 -0
package/package.json
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
{
|
2
|
+
"name": "@commandcenterio/convert-ui",
|
3
|
+
"version": "0.0.1",
|
4
|
+
"main": "./dist/index.js",
|
5
|
+
"module": "./dist/index.mjs",
|
6
|
+
"types": "./dist/index.d.ts",
|
7
|
+
"sideEffects": false,
|
8
|
+
"license": "MIT",
|
9
|
+
"files": [
|
10
|
+
"dist/**"
|
11
|
+
],
|
12
|
+
"devDependencies": {
|
13
|
+
"@types/react": "^18.2.46",
|
14
|
+
"@types/react-dom": "^18.2.18",
|
15
|
+
"eslint": "^8.56.0",
|
16
|
+
"react": "^18.2.0",
|
17
|
+
"tsup": "^8.0.1",
|
18
|
+
"typescript": "^5.3.3",
|
19
|
+
"@repo/typescript-config": "0.0.0",
|
20
|
+
"@repo/eslint-config": "0.0.0"
|
21
|
+
},
|
22
|
+
"publishConfig": {
|
23
|
+
"access": "public"
|
24
|
+
},
|
25
|
+
"dependencies": {
|
26
|
+
"@gsap/react": "^2.1.0",
|
27
|
+
"@tailwindcss/container-queries": "^0.1.1",
|
28
|
+
"classnames": "^2.5.1",
|
29
|
+
"esbuild-sass-plugin": "^3.0.0",
|
30
|
+
"gsap": "^3.12.5",
|
31
|
+
"react-fast-marquee": "^1.6.3",
|
32
|
+
"react-icons": "^5.0.1",
|
33
|
+
"react-intersection-observer": "^9.6.0"
|
34
|
+
},
|
35
|
+
"scripts": {
|
36
|
+
"build": "tsup src/index.tsx --format esm,cjs --dts --external react",
|
37
|
+
"dev": "tsup src/index.tsx --format esm,cjs --watch --dts --external react",
|
38
|
+
"lint": "eslint . --max-warnings 0",
|
39
|
+
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
|
40
|
+
}
|
41
|
+
}
|