-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.57 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.57 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
{
"name": "shellui",
"version": "1.0.0",
"description": "Modern web interface for running shell commands with advanced theming",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"dev": "concurrently \"bun run dev:server\" \"bun run dev:client\"",
"dev:server": "cd packages/server && bun run dev",
"dev:client": "cd packages/client && bun run dev",
"build": "bun run build:server && bun run build:client",
"build:server": "cd packages/server && bun run build",
"build:client": "cd packages/client && bun run build",
"start": "cd packages/server && bun run start",
"clean": "rm -rf packages/*/dist packages/*/node_modules node_modules",
"install:all": "bun install && cd packages/server && bun install && cd ../client && bun install",
"lint": "bun run lint:server && bun run lint:client",
"lint:server": "cd packages/server && bun run lint",
"lint:client": "cd packages/client && bun run lint",
"test": "bun run test:server && bun run test:client",
"test:server": "cd packages/server && bun run test",
"test:client": "cd packages/client && bun run test"
},
"devDependencies": {
"@types/node": "^20.0.0",
"concurrently": "^8.2.2",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/your-username/shellui.git"
},
"keywords": [
"shell",
"web-interface",
"terminal",
"theming",
"react",
"typescript"
],
"author": "Your Name",
"license": "MIT"
}