forked from gethopp/hopp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 902 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 902 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
{
"name": "hopp-repo",
"version": "0.0.0",
"description": "Monorepo package",
"main": "index.js",
"private": true,
"repository": "git@github.com:gethopp/hopp.git",
"author": "Hopp team <info@gethopp.app>",
"license": "AGPL-3.0-only",
"scripts": {
"generate-openapi-types": "yarn generate-openapi-types:web-app && yarn generate-openapi-types:tauri",
"generate-openapi-types:web-app": "npx openapi-typescript ./backend/api-files/openapi.yaml -o ./web-app/src/openapi.d.ts",
"generate-openapi-types:tauri": "npx openapi-typescript ./backend/api-files/openapi.yaml -o ./tauri/src/openapi.d.ts"
},
"devDependencies": {
"openapi-typescript": "^7.4.4",
"prettier": "^3.5.1",
"pretty-quick": "^4.0.0"
},
"workspaces": [
"tauri",
"web-app",
"docs"
],
"packageManager": "yarn@4.9.2",
"installConfig": {
"hoistingLimits": "workspaces"
}
}