-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (35 loc) · 930 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (35 loc) · 930 Bytes
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": "vellum",
"version": "1.0.0",
"private": true,
"description": "Micro-utility store powered by x402 payments on Solana",
"license": "MIT",
"homepage": "https://vellumlabs.app",
"workspaces": [
"apps/*",
"packages/*",
"tests"
],
"scripts": {
"dev": "turbo run dev",
"dev:api": "pnpm --filter @vellum/shared build && pnpm --filter @vellum/api dev",
"dev:web": "pnpm --filter @vellum/web dev",
"build": "turbo run build",
"build:shared": "pnpm --filter @vellum/shared build",
"start": "turbo run start",
"preflight": "tsx scripts/preflight.ts",
"test": "turbo run test",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"turbo": "^2.0.0",
"typescript": "^5.5.0",
"tsx": "^4.7.0"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@9.15.0"
}