-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.16 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.16 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
45
46
47
{
"name": "fly-io-api",
"version": "0.1.4",
"description": "TypeScript package to interact with Fly.io machines api",
"keywords": [
"fly.io",
"machines"
],
"license": "MIT",
"author": "hilja",
"repository": {
"url": "git+https://github.com/hilja/fly-io-api.git"
},
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"type": "module",
"sideEffects": false,
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown",
"format": "oxfmt --write",
"lint": "oxlint --type-check",
"ncu": "pnpmx npm-check-updates --format=group,repo -i -p pnpm",
"pub": "pnpm build && pnpm build && (npm whoami || npm login) && pnpm publish --access=public --tag=latest",
"test": "vitest"
},
"devDependencies": {
"@types/node": "25.6.0",
"@typescript/native-preview": "7.0.0-dev.20260411.1",
"oxfmt": "0.44.0",
"oxlint": "1.59.0",
"oxlint-tsgolint": "0.20.0",
"tsdown": "0.21.7",
"typescript": "6.0.2",
"vitest": "4.1.4"
},
"packageManager": "pnpm@10.33.0"
}