-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 825 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 825 Bytes
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
{
"name": "file-manager-services",
"version": "1.1.0",
"main": "dist/services/index.js",
"types": "dist/services/index.d.ts",
"exports": {
".": "./dist/index.js",
"./services": "./dist/services/index.js",
"./services/*": "./dist/services/*.js",
"./utils": "./dist/utils/index.js",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"tests": "bun test src/**/*.spec.ts",
"format": "biome format --write .",
"lint": "biome lint .",
"build": "bun run build.ts"
},
"dependencies": {
"@octokit/core": "^6.1.6",
"@octokit/plugin-rest-endpoint-methods": "^13.5.0",
"googleapis": "^144.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"bun-types": "^1.2.19"
},
"module": "src/index.ts",
"type": "module",
"peerDependencies": {
"typescript": "^5.8.3"
}
}