-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@owloops/browserbird",
"version": "2.3.3",
"description": "A self-hosted AI assistant in Slack, with a real browser and a scheduler",
"type": "module",
"bin": {
"browserbird": "./bin/browserbird"
},
"engines": {
"node": ">=22.21.0"
},
"files": [
"dist",
"bin/browserbird",
"web/dist",
"README.md"
],
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"test": "node --test \"src/**/*.test.ts\"",
"build": "tsdown",
"dev": "tsdown && ./bin/browserbird",
"dev:web": "cd web && npm run dev",
"dev:server": "node --watch --disable-warning=ExperimentalWarning bin/browserbird-dev",
"dev:all": "concurrently -n be,fe -c blue,green \"npm run dev:server\" \"npm run dev:web\"",
"start": "./bin/browserbird",
"prepublishOnly": "npm run lint && npm run format:check && npm run typecheck && npm run build && cd web && npm ci && npm run build"
},
"keywords": [
"cli",
"ai-agent",
"orchestrator",
"browser-automation",
"scheduler",
"cron",
"claude",
"playwright"
],
"author": "Owloops",
"license": "MIT",
"homepage": "https://github.com/Owloops/browserbird#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Owloops/browserbird.git"
},
"bugs": {
"url": "https://github.com/Owloops/browserbird/issues"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"concurrently": "^9.2.1",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.0",
"semantic-release": "^25.0.3",
"tsdown": "^0.21.0-beta.2",
"typescript": "^5.8.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"@slack/socket-mode": "^2.0.5"
}
}