-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.79 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
70
71
{
"name": "@pythoughts/monorepo",
"version": "0.1.1",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"postinstall": "node scripts/fix-node-pty-perms.mjs",
"build": "pnpm -r run build",
"build:packages": "pnpm -r --filter './packages/*' run build",
"dev:cli": "pnpm -C apps/pythinker-code run dev",
"dev:web": "pnpm -C apps/pythinker-web run dev",
"dev:server": "pnpm -C apps/pythinker-code run dev:server",
"build:plugin-marketplace": "pnpm -C apps/pythinker-code run build:plugin-marketplace",
"dashboard": "pnpm -C apps/dashboard run dev",
"dev:docs": "pnpm -C docs install --ignore-workspace && pnpm -C docs run dev",
"typecheck": "pnpm run build:packages && pnpm -r --filter './packages/*' run typecheck && pnpm --filter @pythoughts/pythinker-code run typecheck && pnpm --filter @pythoughts/pythinker-web run typecheck && pnpm --filter @pythoughts/dashboard-server run typecheck && pnpm --filter @pythoughts/dashboard-web run typecheck",
"lint": "oxlint --type-aware",
"lint:fix": "pnpm run lint --fix",
"lint:pkg": "pnpm --filter @pythoughts/pythinker-code exec publint && npm_config_cache=${TMPDIR:-/tmp}/pythinker-code-npm-cache pnpm --filter @pythoughts/pythinker-code exec attw --pack . --profile node16",
"sherif": "sherif --ignore-package ./apps/vscode",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"clean": "pnpm -r run clean",
"changeset": "changeset",
"version": "changeset version",
"version:release": "changeset version",
"publish": "pnpm run typecheck && pnpm run lint && pnpm run sherif && pnpm run test && pnpm run build && pnpm run lint:pkg && changeset publish",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.3",
"@changesets/changelog-github": "0.7.0",
"@changesets/cli": "2.31.0",
"@microsoft/api-extractor": "7.58.9",
"@types/node": "^26.1.2",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"@vitest/coverage-v8": "4.1.9",
"lint-staged": "16.4.0",
"oxlint": "1.70.0",
"oxlint-tsgolint": "0.23.0",
"pkg-pr-new": "0.0.75",
"publint": "0.3.21",
"sherif": "1.11.1",
"simple-git-hooks": "2.13.1",
"tsdown": "0.22.3",
"tsx": "^4.23.5",
"typescript": "6.0.3",
"vitest": "4.1.9"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged",
"pre-push": "bash scripts/pre-push.sh"
},
"engines": {
"node": ">=26.4.0"
},
"packageManager": "pnpm@10.34.3",
"pnpm": {
"overrides": {
"vite@>=8.0.0 <8.0.16": "8.0.16",
"@babel/core@<7.29.6": "^7.29.6",
"diff@>=6.0.0 <8.0.3": "^8.0.3",
"serialize-javascript@<7.0.5": "^7.0.5"
}
},
"dependencies": {
"@earendil-works/pi-tui": "^0.83.0"
}
}