-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 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
44
{
"name": "fly-secrets-diff",
"version": "0.1.4",
"description": "CLI tool to diff fly.io machine secrets and local secrets",
"keywords": [
"diff",
"fly.io"
],
"license": "ISC",
"author": "hilja",
"repository": {
"url": "git+https://github.com/hilja/fly-secrets-diff.git"
},
"bin": {
"fly-secrets-diff": "./index.mjs",
"fsd": "./index.mjs"
},
"files": [
"index.mjs"
],
"type": "module",
"sideEffects": false,
"main": "index.mjs",
"exports": {
"./package.json": "./package.json",
".": "./index.mjs"
},
"scripts": {
"format": "oxfmt --write",
"lint": "oxlint --type-check",
"ncu": "pnpmx npm-check-updates --format=group,repo -i -p pnpm",
"pub": "(npm whoami || npm login) && pnpm publish --access=public --tag=latest",
"test": "vitest"
},
"devDependencies": {
"@types/node": "25.5.2",
"@typescript/native-preview": "7.0.0-dev.20260405.1",
"oxfmt": "0.43.0",
"oxlint": "1.58.0",
"oxlint-tsgolint": "0.19.0",
"vitest": "4.1.2"
},
"packageManager": "pnpm@10.33.0"
}