-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 966 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 966 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
30
31
32
33
34
35
36
37
{
"name": "@openbrowser-ai/openbrowser",
"version": "1.0.0",
"description": "Empowering language to transform human words into action.",
"workspaces": [
"packages/core",
"packages/extension",
"extension"
],
"scripts": {
"build": "pnpm -r --sequential build",
"test": "pnpm -r --sequential test",
"clean": "rm -rf node_modules && pnpm -r exec -- rm -rf node_modules dist",
"format": "prettier --write . --ignore-unknown",
"format:check": "prettier --check . --ignore-unknown",
"prepare": "husky"
},
"author": "OpenBrowserAI",
"license": "MIT",
"keywords": [
"openbrowser",
"openbrowser-ai"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenBrowserAI/openbrowser.git"
},
"devDependencies": {
"husky": "9.1.7",
"prettier": "^2.8.8",
"typescript": "^5.8.3"
}
}