forked from onlook-dev/onlook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.15 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.15 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
{
"name": "@onlook/repo",
"version": "0.0.0",
"description": "Onlook Monorepo",
"homepage": "https://onlook.com",
"license": "Apache-2.0",
"private": true,
"author": {
"name": "Onlook",
"email": "contact@onlook.com"
},
"workspaces": [
"packages/*",
"apps/studio",
"tooling/*"
],
"scripts": {
"build:foundation": "bun --filter @onlook/foundation build",
"build:cli": "bun build:foundation && bun --elide-lines 0 --filter onlook typecheck && bun --elide-lines 0 --filter onlook build",
"build:studio": "bun build:foundation && bun --elide-lines 0 --filter @onlook/studio build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "bun --elide-lines 0 --filter '*' clean",
"db:gen": "bun --elide-lines 0 --filter @onlook/supabase db:gen",
"db:gen:local": "bun --elide-lines 0 --filter @onlook/backend db:gen",
"dev:foundation": "bun --elide-lines 0 --filter @onlook/foundation dev",
"dev:studio": "bun --elide-lines 0 --filter @onlook/studio dev",
"build": "bun --elide-lines 0 --filter '*' build",
"ci:build": "bun run build:foundation && bun --filter '*' build",
"dev": "bun --elide-lines 0 --filter '*' dev",
"test": "bun --elide-lines 0 --filter '*' test",
"format": "bun --elide-lines 0 --filter '*' format",
"format:precommit": "bun --filter '*' format",
"lint": "bun --elide-lines 0 --filter @onlook/studio lint",
"lint:precommit": "bun --filter @onlook/studio lint",
"typecheck": "bun --elide-lines 0 --filter '*' typecheck",
"increment_tag": "./scripts/increment_tag.sh",
"publish_tag": "./scripts/publish_tag.sh",
"remove_tag": "./scripts/remove_tag.sh",
"download_bun": "bun run ./scripts/download_bun.ts",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onlook-dev/onlook.git"
},
"bugs": {
"url": "https://github.com/onlook-dev/onlook/issues"
},
"devDependencies": {
"extract-zip": "^2.0.1",
"husky": "^9.1.6"
}
}