-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.61 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
50
51
52
53
54
55
{
"name": "react-farcaster-embed",
"version": "1.8.9",
"description": "Embed casts from Farcaster in your React app.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "cp src/styles.css dist && tsup src/index.tsx && tsup src/client/index.tsx -d dist/client",
"watch:ts:client": "tsup src/client/index.tsx -d dist/client --watch",
"watch:ts": "tsup src/index.tsx --watch",
"watch:css": "nodemon --watch src/styles.css --exec 'cp src/styles.css dist/'",
"watch:yalc": "pnpm nodemon -w src -x 'yalc push' --ext 'tsx,ts,css,js,json'",
"dev": "concurrently 'pnpm:watch:*'",
"format": "prettier --write ."
},
"keywords": [
"react",
"farcaster",
"embed"
],
"author": "pugson <[email protected]>",
"license": "The Unlicense",
"homepage": "https://wojtek.im/journal/react-farcaster-embed-casts-in-your-react-app",
"repository": {
"type": "git",
"url": "https://github.com/pugson/react-farcaster-embed.git"
},
"bugs": {
"url": "https://github.com/pugson/react-farcaster-embed/issues"
},
"devDependencies": {
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.22",
"concurrently": "^8.2.2",
"eslint": "^7.32.0",
"nodemon": "^3.1.0",
"prettier": "^2.8.8",
"tsup": "^6.7.0",
"typescript": "^5.4.3"
},
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0"
},
"packageManager": "[email protected]",
"dependencies": {
"linkify-react": "^4.1.3",
"linkifyjs": "^4.1.3",
"server-only": "^0.0.1"
}
}