-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.34 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
{
"name": "sui-cli-web",
"version": "1.3.3",
"private": true,
"description": "Keyboard-first web interface for Sui CLI - Built for First Movers",
"repository": {
"type": "git",
"url": "https://github.com/hien-p/raycast-sui-cli.git",
"directory": "sui-cli-web"
},
"homepage": "https://github.com/hien-p/raycast-sui-cli/tree/master/sui-cli-web#readme",
"bugs": {
"url": "https://github.com/hien-p/raycast-sui-cli/issues"
},
"keywords": [
"sui",
"blockchain",
"cli",
"web",
"first-movers",
"sui-developers",
"keyboard-first",
"community",
"tier-system"
],
"author": "Harry Phan",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "npm run dev -w sui-cli-web-server",
"dev:client": "npm run dev -w @sui-cli-web/client",
"dev:marketing": "npm run dev -w @sui-cli-web/marketing",
"dev:blog": "npm run dev:marketing",
"dev:mcp": "npm run dev -w @sui-cli-web/mcp",
"build": "npm run build -w @sui-cli-web/shared && npm run build -w sui-cli-web-server && npm run build -w @sui-cli-web/client && npm run build -w @sui-cli-web/marketing && npm run build -w @sui-cli-web/mcp && node -e \"const fs=require('fs');for(const p of ['_astro','changelog','images/changelog'])fs.cpSync('apps/marketing/dist/'+p,'apps/web/dist/blog/'+p,{recursive:true})\"",
"build:server": "npm run build -w sui-cli-web-server",
"build:client": "npm run build -w @sui-cli-web/client",
"build:marketing": "npm run build -w @sui-cli-web/marketing",
"build:blog": "npm run build:marketing",
"build:mcp": "npm run build -w @sui-cli-web/mcp",
"preview:marketing": "npm run preview -w @sui-cli-web/marketing",
"preview:blog": "npm run preview:marketing",
"start": "npm run start -w sui-cli-web-server",
"lint": "npm run lint --workspaces --if-present",
"clean": "rm -rf apps/*/dist apps/*/node_modules packages/*/dist packages/*/node_modules node_modules"
},
"devDependencies": {
"@biomejs/biome": "^2.5.2",
"concurrently": "^8.2.2",
"lint-staged": "^15.2.10",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc}": [
"biome check --write --no-errors-on-unmatched"
]
}
}