-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.12 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.12 KB
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": "@thunlights/oauth",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"version": "2.0.0",
"author": "thunlights",
"license": "MIT",
"scripts": {
"ci": "bun install && npm run build",
"build": "tsup",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"changesets": "npx @changesets/cli"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/ThunLights/oauth-lib-js.git",
"directory": "dist/index.js"
},
"devDependencies": {
"@types/bun": "^1.2.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@changesets/cli": "^2.29.4",
"@eslint/compat": "^1.2.9",
"@eslint/js": "^9.27.0",
"@types/ws": "^8.5.14",
"bun": "^1.2.2",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"globals": "^16.2.0",
"prettier": "^3.5.3",
"strict-event-emitter-types": "^2.0.0",
"tsup": "^8.3.6",
"typescript-eslint": "^8.32.1",
"ws": "^8.18.0",
"zod": "^3.24.1"
},
"keywords": [
"thunlights",
"oauth",
"thunlights oauth",
"open authorization"
]
}