forked from get-convex/uploadstuff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.53 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
{
"name": "@xixixao/uploadstuff",
"version": "0.0.5",
"author": "xixixao",
"license": "MIT",
"repository": "https://github.com/xixixao/uploadstuff",
"homepage": "https://uploadstuff.dev",
"module": "lib/index.ts",
"types": "lib/index.ts",
"type": "module",
"files": [
"lib",
"esm",
"cjs",
"README.md"
],
"exports": {
".": {
"types": "./lib/index.ts",
"import": "./esm/index.js",
"require": "./cjs/index.js"
},
"./react": {
"types": "./lib/react.ts",
"import": "./esm/react.js",
"require": "./cjs/react.js"
},
"./react/styles.css": "./lib/styles.css"
},
"scripts": {
"publish-docs": "npx vercel build --prod && npx vercel deploy --prebuilt --prod",
"build-css": "tailwindcss -i ./styles.css -o ./lib/styles.css",
"watch-css": "tailwindcss -i ./styles.css -o ./lib/styles.css --watch",
"build": "npm run build-css && rm -rf cjs esm && tsc --outDir esm -t esnext --noEmit false --allowImportingTsExtensions false --composite false --jsx react-jsx && tsc --outDir cjs -t es6 --sourceMap --noEmit false --allowImportingTsExtensions false --composite false -m commonjs --moduleResolution node --jsx react-jsx && echo '{\"type\": \"commonjs\"}' > cjs/package.json"
},
"dependencies": {
"tailwind-merge": "^1.14.0"
},
"peerDependencies": {
"typescript": "^5.0.0",
"react": "^18.2.0",
"react-dropzone": "^14.2.3"
},
"devDependencies": {
"@types/react": "^18.2.21",
"tailwindcss": "^3.3.3",
"react-dropzone": "^14.2.3"
}
}