-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "capstan",
"version": "0.6.0",
"description": "Multi-provider VPS lifecycle library and CLI — Hetzner, DigitalOcean, Linode, Vultr. TypeScript + Go, one shared spec.",
"keywords": [
"vps",
"hetzner",
"digitalocean",
"linode",
"vultr",
"cloud",
"provider",
"infrastructure",
"provisioning"
],
"homepage": "https://github.com/solcreek/capstan",
"repository": {
"type": "git",
"url": "git+https://github.com/solcreek/capstan.git"
},
"bugs": {
"url": "https://github.com/solcreek/capstan/issues"
},
"license": "MIT",
"author": "SolCreek",
"type": "module",
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./hetzner": {
"types": "./dist/hetzner.d.ts",
"default": "./dist/hetzner.js"
},
"./digitalocean": {
"types": "./dist/digitalocean.d.ts",
"default": "./dist/digitalocean.js"
},
"./linode": {
"types": "./dist/linode.d.ts",
"default": "./dist/linode.js"
},
"./vultr": {
"types": "./dist/vultr.d.ts",
"default": "./dist/vultr.js"
},
"./registry": {
"types": "./dist/registry.d.ts",
"default": "./dist/registry.js"
},
"./posture": {
"types": "./dist/posture.d.ts",
"default": "./dist/posture.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"capstan": "./dist/cli.js"
},
"files": [
"dist",
"src",
"skills",
"skills.sh.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run clean && npm run typecheck && npm run test && npm run build"
},
"devDependencies": {
"@types/node": "^22.19.19",
"typescript": "^5.7.2",
"vitest": "^4.1.7"
}
}