-
Notifications
You must be signed in to change notification settings - Fork 235
/
package.json
48 lines (48 loc) · 1.67 KB
/
package.json
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
{
"name": "@onlook/repo",
"version": "0.0.0",
"description": "Onlook Monorepo",
"homepage": "https://onlook.dev",
"license": "Apache-2.0",
"private": true,
"author": {
"name": "Onlook",
"email": "[email protected]"
},
"workspaces": [
"packages/*",
"apps/*",
"tooling/*"
],
"scripts": {
"build:foundation": "bun --filter @onlook/foundation build",
"build:cli": "bun build:foundation && bun --filter onlook typecheck && bun --filter onlook build",
"build:studio": "bun build:foundation && bun --filter @onlook/studio build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "bun --filter '*' clean",
"db:gen": "bun --filter @onlook/supabase db:gen",
"db:gen:local": "bun --filter @onlook/backend db:gen",
"dev:foundation": "bun --filter @onlook/foundation dev",
"dev:studio": "bun --filter @onlook/studio dev",
"build": "bun --filter '*' build",
"dev": "bun --filter '*' dev",
"test": "bun --filter '*' test",
"format": "bun --filter @onlook/studio format",
"lint": "bun --filter @onlook/studio lint",
"typecheck": "bun --filter '*' typecheck",
"increment_tag": "cd apps/studio && npm version patch",
"publish_tag": "./scripts/publish_tag.sh",
"remove_tag": "./scripts/remove_tag.sh",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onlook-dev/onlook.git"
},
"bugs": {
"url": "https://github.com/onlook-dev/onlook/issues"
},
"devDependencies": {
"husky": "^9.1.6"
}
}