-
Notifications
You must be signed in to change notification settings - Fork 178
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 3.46 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 3.46 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
{
"name": "prompthub-monorepo",
"version": "0.5.9",
"private": true,
"description": "PromptHub monorepo - AI Prompt management platform",
"license": "AGPL-3.0",
"packageManager": "pnpm@9.15.0",
"repository": {
"type": "git",
"url": "https://github.com/legeling/PromptHub.git"
},
"scripts": {
"build": "pnpm --filter @prompthub/desktop build",
"build:cli": "pnpm --filter @prompthub/cli build",
"pack:cli": "pnpm --dir apps/cli pack",
"build:web": "pnpm --filter @prompthub/web build",
"build:web:cf": "pnpm --filter @prompthub/web build:client",
"dev": "node scripts/run-with-system-node.mjs pnpm --filter @prompthub/desktop dev",
"dev:cli": "pnpm --filter @prompthub/cli dev",
"dev:web": "pnpm --filter @prompthub/web dev",
"dev:mobile": "pnpm --filter @prompthub/mobile start",
"android:mobile": "pnpm --filter @prompthub/mobile android",
"ios:mobile": "pnpm --filter @prompthub/mobile ios",
"web:mobile": "pnpm --filter @prompthub/mobile web",
"electron:dev": "pnpm --filter @prompthub/desktop electron:dev",
"electron:build": "pnpm --filter @prompthub/desktop electron:build",
"electron:build:mac": "pnpm --filter @prompthub/desktop electron:build:mac",
"electron:build:win": "pnpm --filter @prompthub/desktop electron:build:win",
"electron:build:linux": "pnpm --filter @prompthub/desktop electron:build:linux",
"lint": "pnpm lint:file-size && pnpm --filter @prompthub/desktop lint",
"lint:file-size": "node scripts/check-file-line-limits.mjs",
"lint:file-size:report": "node scripts/check-file-line-limits.mjs --report",
"lint:web": "pnpm --filter @prompthub/web lint",
"format": "pnpm --filter @prompthub/desktop format",
"test": "pnpm --filter @prompthub/desktop test",
"test:cli": "pnpm --filter @prompthub/cli test",
"test:unit": "pnpm --filter @prompthub/desktop test:unit",
"test:integration": "pnpm --filter @prompthub/desktop test:integration",
"test:run": "pnpm --filter @prompthub/desktop test:run",
"test:e2e": "pnpm --filter @prompthub/desktop test:e2e",
"test:e2e:smoke": "pnpm --filter @prompthub/desktop test:e2e:smoke",
"test:release": "pnpm --filter @prompthub/desktop test:release",
"typecheck": "pnpm --filter @prompthub/desktop typecheck",
"typecheck:cli": "pnpm --filter @prompthub/cli typecheck",
"typecheck:web": "pnpm --filter @prompthub/web typecheck",
"typecheck:mobile": "pnpm --filter @prompthub/mobile typecheck",
"test:perf": "pnpm --filter @prompthub/desktop test:perf",
"test:web": "pnpm --filter @prompthub/web test",
"test:mobile": "pnpm --filter @prompthub/mobile test",
"start:web": "pnpm --filter @prompthub/web start",
"spec:index": "node scripts/generate-spec-change-index.mjs",
"spec:index:check": "node scripts/generate-spec-change-index.mjs --check",
"spec:test": "bash .agents/skills/spec-init/tests/spec-init-commit-rules.sh && bash .agents/skills/spec-init/tests/spec-init-governance.sh && bash .agents/skills/spec-init/tests/spec-change-index.sh && bash .agents/skills/spec-init/tests/spec-governance-single-source.sh",
"verify:web": "pnpm lint:web && pnpm typecheck:web && pnpm test:web -- --run && pnpm build:web",
"verify:release": "node --experimental-strip-types scripts/verify-release.mts",
"verify:release:quick": "node --experimental-strip-types scripts/verify-release.mts --profile quick",
"docker:web:build": "docker build -f apps/web/Dockerfile -t prompthub-web:local ."
}
}