-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.59 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
{
"name": "tue-wsi-cli",
"version": "1.0.0",
"description": "Interactive CLI for University of Tuebingen WSI/CG remote workflows",
"type": "module",
"license": "MIT",
"author": "Sebastian Boehler",
"repository": {
"type": "git",
"url": "git+https://github.com/sebastianboehler/tue-cli.git"
},
"bugs": {
"url": "https://github.com/sebastianboehler/tue-cli/issues"
},
"homepage": "https://github.com/sebastianboehler/tue-cli#readme",
"keywords": [
"cli",
"ssh",
"vnc",
"gpu",
"cuda",
"slurm",
"remote",
"tuebingen",
"wsi"
],
"engines": {
"bun": ">=1.0.0"
},
"files": [
"dist",
"python",
"skills",
"docs",
"README.md",
"CONTRIBUTING.md",
"SECURITY.md",
"LICENSE",
".env.example",
"requirements-kernel-research.txt"
],
"bin": {
"tue": "dist/index.js"
},
"scripts": {
"start": "bun run src/index.ts",
"tue": "bun run src/index.ts",
"test": "bun test",
"check": "bunx tsc --noEmit",
"lint": "eslint src test --ext .ts",
"lint:fix": "eslint src test --ext .ts --fix",
"prepare": "husky install",
"link:global": "bun link",
"build": "bun build ./src/index.ts --outfile ./dist/index.js --target node",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@inquirer/prompts": "^7.8.6",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"@types/node": "^25.3.3",
"eslint": "^9.37.0",
"husky": "^9.1.7",
"typescript": "^5.6.3"
}
}