-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 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
{
"name": "tablinum-monorepo",
"private": true,
"workspaces": [
"packages/*",
"apps/*",
"examples/*"
],
"scripts": {
"dev": "npm run dev -w tablinum",
"build": "npm run build -w tablinum",
"test": "npx vitest run",
"test:watch": "npx vitest",
"lint": "oxlint",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"validate": "npx tsx scripts/validate.ts",
"demo": "npm run dev -w tablinum-example-vanilla",
"demo:svelte": "npm run dev -w tablinum-svelte-example",
"web": "npm run dev -w tablinum-web",
"web:build": "npm run build -w tablinum-web",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish",
"relays": "docker compose up -d",
"relays:down": "docker compose down",
"relays:clean": "docker compose down -v"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@j178/prek": "0.3.5",
"oxfmt": "0.38.0",
"oxlint": "^1.53.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}