-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.78 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "react-glimpse",
"version": "2.0.15",
"description": "Fast, unstyled link preview React component.",
"files": [
"dist"
],
"exports": {
"./client": "./dist/client.js",
"./server": "./dist/server.js"
},
"typesVersions": {
"*": {
"client": [
"./dist/client.d.ts"
],
"server": [
"./dist/server.d.ts"
]
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsup src",
"dev": "tsup src --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haydenbleasel/react-glimpse.git"
},
"keywords": [
"link",
"preview",
"interaction",
"react",
"component"
],
"author": "Hayden Bleasel <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/haydenbleasel/react-glimpse/issues"
},
"homepage": "https://github.com/haydenbleasel/react-glimpse#readme",
"devDependencies": {
"@types/react": "^18.0.31",
"@types/react-dom": "^18.0.11",
"eslint": "^8.37.0",
"eslint-config-harmony": "^3.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stylelint": "^15.4.0",
"tsup": "^6.7.0",
"typescript": "^5.0.3"
},
"prettier": "eslint-config-harmony/prettier",
"stylelint": {
"extends": "eslint-config-harmony/stylelint"
},
"dependencies": {
"@radix-ui/react-portal": "^1.0.2",
"@react-hookz/web": "^23.0.0",
"node-html-parser": "^6.1.5",
"react-use": "^17.4.0",
"zustand": "^4.3.7"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}