-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 982 Bytes
/
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
{
"name": "@soliantconsulting/bitbucket-cloud-cli-auth",
"version": "1.0.0",
"description": "CLI OAuth implementation for BitBucket Cloud",
"type": "module",
"author": "Soliant Consulting",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"scripts": {
"build": "tsc",
"format": "biome format . --write",
"check": "biome check . --apply"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@tsconfig/node20": "^20.1.2",
"@types/koa": "^2.15.0",
"@types/node": "^20.11.5",
"lefthook": "^1.6.0",
"typescript": "^5.3.3"
},
"dependencies": {
"koa": "^2.15.0",
"open": "^10.0.4"
}
}