-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 876 Bytes
/
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
{
"name": "framer-tsup-esm",
"version": "0.0.1",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"license": "MIT",
"author": "ruucm",
"files": [
"dist/**"
],
"scripts": {
"build": "tsup",
"dev": "concurrently \"tsup --watch\" \"pnpm ngrok\"",
"ngrok": "ngrok http --domain=yourdomain.ngrok-free.app 8000",
"release": "pnpm run build && mkdir -p release && cp -Rf dist release/$npm_package_name@$npm_package_version"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@types/socket.io": "^3.0.2",
"concurrently": "^9.0.0",
"framer": "^2.4.1",
"globby": "^14.0.2",
"react": "^18.3.1",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"tailwindcss": "^3.4.10",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
}
}