-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.02 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
{
"name": "helloasso",
"module": "index.ts",
"version": "0.0.4",
"type": "module",
"scripts": {
"build": "bun run build.mjs",
"prepublishOnly": "bun run build",
"publish": "npm publish && bunx jsr publish"
},
"exports": {
".": {
"import": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
},
"files": ["dist"],
"keywords": ["bun", "helloasso", "api"],
"license": "MIT",
"homepage": "https://git.inpt.fr/inp-net/helloasso-js",
"repository": {
"type": "git",
"url": "git+https://git.inpt.fr/inp-net/helloasso-js.git"
},
"bugs": {
"url": "https://git.inpt.fr/inp-net/helloasso-js/-/issues"
},
"author": {
"email": "[email protected]",
"name": "net7 / INP-net members",
"url": "https://net7.dev"
},
"devDependencies": {
"@types/bun": "latest",
"bun-plugin-dts": "^0.2.3",
"zod": "^3.23.8"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"dotenv": "^16.4.5",
"oauth2": "^0.0.1"
}
}