-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.03 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
{
"name": "apptoken",
"version": "0.1.1",
"description": "GitHub App token provider CLI",
"type": "module",
"main": "./dist/cli.js",
"bin": {
"apptoken": "./dist/cli.js"
},
"scripts": {
"dev": "bun run src/cli.ts",
"build": "bun build ./src/cli.ts --outfile ./dist/cli.js --target bun --banner '#!/usr/bin/env bun'",
"lint": "bash -c 'oxlint $(find src test -name \"*.ts\" 2>/dev/null)'",
"typecheck": "tsc --noEmit",
"test": "bun test",
"check": "bun run typecheck && bun run lint && bun test",
"prepack": "bun run build"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"engines": {
"bun": ">=1.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"oxlint": "latest",
"typescript": "^5"
},
"dependencies": {
"effect": "^3.19.15",
"@effect/cli": "^0.73.1",
"@effect/platform": "^0.94.2",
"@effect/platform-bun": "^0.87.1",
"jose": "latest"
}
}