forked from magnitudedev/browser-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.03 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
{
"name": "magnitude",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish",
"postinstall": "turbo run build"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"prettier": "^3.5.3",
"turbo": "^2.4.4",
"typescript": "5.8.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.2.8^",
"workspaces": [
"apps/*",
"packages/*"
],
"author": {
"name": "Magnitude",
"email": "founders@magnitude.run",
"url": "https://magnitude.run"
},
"contributors": [
"Anders Lie <anders@magnitude.run>",
"Tom Greenwald <tom@magnitude.run>"
],
"license": "Apache-2.0",
"dependencies": {
"@paralleldrive/cuid2": "^2.2.2",
"patchright": "^1.52.5"
}
}