-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.25 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 2.25 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
{
"private": true,
"name": "repterm-monorepo",
"workspaces": [
"packages/*",
"packages/repterm/examples",
"packages/plugin-kubectl/examples",
"apps/*"
],
"scripts": {
"build": "bun run --filter '*' build",
"build:repterm": "bun run --filter repterm build",
"build:plugins": "bun run build:plugin-api && bun run build:plugin-kubectl",
"build:binary": "bun run --filter repterm build:bin:all",
"publish:repterm": "bun publish --cwd packages/repterm --access public",
"publish:plugin-api": "bun publish --cwd packages/plugin-api --access public",
"publish:plugin-kubectl": "bun publish --cwd packages/plugin-kubectl --access public",
"publish:plugins": "bun run publish:plugin-api && bun run publish:plugin-kubectl",
"publish:all": "bun run publish:plugin-api && bun run publish:repterm && bun run publish:plugin-kubectl",
"test": "bun test packages/repterm/tests",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"dev": "bun --watch packages/repterm/src/cli/index.ts",
"lint": "eslint packages/repterm/src/",
"format": "prettier --write \"packages/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"packages/**/*.ts\" \"tests/**/*.ts\"",
"repterm": "bun run packages/repterm/src/cli/index.ts",
"example": "bun run packages/repterm/src/cli/index.ts packages/repterm/examples",
"example:record": "bun run packages/repterm/src/cli/index.ts --record packages/repterm/examples",
"docs:dev": "bun run --filter docs dev",
"docs:build": "bun run --filter docs build",
"release": "semantic-release",
"build:plugin-api": "bun run --filter repterm-api build",
"build:plugin-kubectl": "bun run --filter @nexusgpu/repterm-plugin-kubectl build"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^12.0.5",
"@semantic-release/npm": "^13.1.4",
"@semantic-release/release-notes-generator": "^14.1.0",
"@eslint/js": "^9.39.2",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"prettier": "^3.0.0",
"semantic-release": "^25.0.3",
"typescript": "^5.3.0"
},
"type": "module"
}