-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 3.04 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
{
"name": "@spore-host/spawn-ts",
"version": "0.7.0",
"type": "module",
"description": "Browser-native spawn: launch and self-terminate AWS EC2 instances, entirely from a web page.",
"keywords": [
"aws",
"ec2",
"spore-host",
"spawn",
"lifecycle",
"self-terminating",
"browser",
"typescript"
],
"homepage": "https://github.com/spore-host/spawn-ts#readme",
"bugs": "https://github.com/spore-host/spawn-ts/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/spore-host/spawn-ts.git"
},
"license": "Apache-2.0",
"author": "Scott Friedman",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" },
"./auth": { "types": "./dist/auth/index.d.ts", "import": "./dist/auth/index.js" },
"./ssm": { "types": "./dist/ssm/index.d.ts", "import": "./dist/ssm/index.js" },
"./terminal": { "types": "./dist/terminal.d.ts", "import": "./dist/terminal.js" },
"./quotas": { "types": "./dist/quotas.d.ts", "import": "./dist/quotas.js" },
"./dns": { "types": "./dist/dns/index.d.ts", "import": "./dist/dns/index.js" },
"./transfer": { "types": "./dist/transfer/index.d.ts", "import": "./dist/transfer/index.js" },
"./portal": { "types": "./dist/portal/portal-core.d.ts", "import": "./dist/portal/portal-core.js" },
"./ui": { "types": "./dist/ui/index.d.ts", "import": "./dist/ui/index.js" },
"./ui/style.css": "./dist/ui/dashboard.css"
},
"files": ["dist"],
"sideEffects": ["**/*.css"],
"scripts": {
"dev": "vite",
"dev:demo": "vite demo/direct",
"dev:portal": "tsx demo/portal/server.ts",
"build:portal-ui": "node demo/portal/build-ui.mjs",
"build:lib": "tsc -p tsconfig.build.json && node scripts/copy-css.mjs",
"prepare": "npm run build:lib",
"build": "tsc && vite build && npm run docs",
"docs": "typedoc",
"preview": "vite preview",
"typecheck": "tsc --noEmit && tsc --noEmit -p demo/tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"check:exports": "node scripts/check-exports.mjs",
"check:imports": "node scripts/check-imports.mjs",
"release:check": "node scripts/release-check.mjs && npm run typecheck && npm test && npm run build:lib && npm run check:exports && npm run check:imports"
},
"dependencies": {
"@aws-sdk/client-ec2": "^3.700.0",
"@aws-sdk/client-service-quotas": "^3.1094.0",
"@aws-sdk/client-ssm": "^3.1093.0",
"@aws-sdk/client-sts": "^3.700.0",
"@spore-host/truffle-ts": "^0.5.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0"
},
"devDependencies": {
"@types/node": "^26.1.1",
"@vitest/coverage-v8": "^4.1.10",
"happy-dom": "^20.11.0",
"tsx": "^4.23.1",
"typedoc": "^0.28.20",
"typescript": "^5.6.0",
"vite": "^8.2.1",
"vitest": "^4.1.10",
"yaml": "^2.9.0"
},
"allowScripts": {
"esbuild@0.25.12": true,
"esbuild@0.28.1": true,
"esbuild@0.21.5": true
}
}