-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.11 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
{
"name": "@temples",
"private": true,
"version": "0.9.0",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "bun --hot example/index.html",
"test": "bun test",
"lint": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check .",
"typecheck": "tsc --noEmit",
"build": "bun run build:engine && bun run build:components && bun run build:ssr && bun run build:jquery",
"build:engine": "cd packages/engine && bun run build",
"build:components": "cd packages/components && bun run build",
"build:ssr": "cd packages/ssr && bun run build",
"build:jquery": "cd packages/jquery && bun run build",
"publish:all": "cd packages/engine && bun publish && cd ../components && bun publish && cd ../ssr && bun publish && cd ../jquery && bun publish",
"docs:build": "cd packages/docs && bun run build",
"docs:serve": "cd packages/docs && bun run serve"
},
"devDependencies": {
"@biomejs/biome": "^2.5.9",
"@types/bun": "latest",
"@types/jquery": "^4.0.1",
"jquery": "^4.0.0",
"linkedom": "^0.18.13",
"typescript": "^5.9.3"
}
}