-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
53 lines (53 loc) · 1.04 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
{
"name": "use-lanyard",
"version": "1.5.2",
"author": "Alistair Smith",
"description": "React hook for Lanyard for tracking your Discord presence.",
"repository": "https://github.com/alii/use-lanyard",
"main": "./dist/index.cjs",
"typings": "./dist/index.d.cts",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"type": "module",
"license": "MIT",
"sideEffects": false,
"files": [
"./dist",
"./README.md",
"./LICENSE",
"./package.json"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "tsup",
"release": "yarn build && yarn publish",
"example": "parcel ./example/index.html"
},
"keywords": [
"discord",
"presence",
"react",
"hook"
],
"devDependencies": {
"@types/react": "^18.2.32",
"@types/react-dom": "^18.2.14",
"parcel": "^2.10.1",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
}
}