-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "ghin",
"description": "⛳ An unofficial api wrapper for the Golf Handicap and Information Network (GHIN)",
"version": "0.5.3",
"author": {
"name": "Nate Clark",
"url": "https://github.com/n8io"
},
"engines": {
"node": ">=18"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"packageManager": "pnpm@8.15.6",
"license": "MIT",
"scripts": {
"build": "rm -rf ./dist && tsup src/index.ts --format cjs,esm --dts",
"changeset": "npx changeset",
"dev": "pnpm --package=tsx --package=dotenv -s dlx tsx -r dotenv/config playground.ts",
"format": "biome check --apply ./src",
"lint": "biome lint ./src && tsc",
"release": "pnpm run build && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^1.6.4",
"@changesets/cli": "^2.27.1",
"@types/node": "^20.12.7",
"dotenv": "^16.4.5",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.5"
},
"dependencies": {
"async-mutex": "^0.5.0",
"jwt-decode": "^4.0.0",
"zod": "^3.22.4"
}
}