-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.1 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.1 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
{
"name": "@ewanc26/pkgs",
"private": true,
"description": "Ewan's personal package monorepo — TypeScript, Rust, and Python",
"author": "Ewan Croft",
"repository": {
"type": "git",
"url": "git+https://github.com/ewanc26/pkgs.git"
},
"homepage": "https://github.com/ewanc26/pkgs",
"bugs": {
"url": "https://github.com/ewanc26/pkgs/issues"
},
"scripts": {
"build": "pnpm -r run build",
"dev": "pnpm -r run dev",
"check": "pnpm -r run check",
"typecheck": "pnpm -r run type-check",
"test": "pnpm -r run test",
"clean": "pnpm -r exec -- rm -rf dist node_modules",
"publish:all": "pnpm -r publish --access public --no-git-checks",
"py:check": "python3 -m py_compile packages/*/main.py packages/*/src/*.py 2>/dev/null || echo 'Some Python files have syntax errors'",
"py:install": "pip install -r packages/llm-analyser/requirements.txt"
},
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"devDependencies": {
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"vercel": "^51.4.0"
}
}