-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.88 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
{
"name": "clawmini",
"version": "0.0.10",
"type": "module",
"workspaces": [
".",
"web"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tbuckley/clawmini.git"
},
"bin": {
"clawmini": "./dist/cli/index.mjs",
"clawmini-adapter-discord": "./dist/adapter-discord/index.mjs",
"clawmini-adapter-google-chat": "./dist/adapter-google-chat/index.mjs"
},
"scripts": {
"clean": "rm -rf dist",
"build": "tsdown && npm run build:web",
"dev:cli": "tsdown --watch",
"dev:daemon": "tsdown --watch",
"lint": "eslint -f codeframe .",
"lint:fix": "eslint . --fix",
"format:check": "prettier --check \"src/**/*.ts\" \"web/src/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\" \"web/src/**/*.ts\"",
"check": "tsc --noEmit && npm run check -w web",
"test": "vitest run && npm run test -w web",
"build:web": "npm run build -w web",
"validate": "npm run format:check && npm run lint && npm run check && npm run test",
"version": "changeset version && npm install --package-lock-only --no-audit",
"release": "npm run build && changeset publish"
},
"dependencies": {
"@google-cloud/pubsub": "^5.3.0",
"@trpc/client": "^11.12.0",
"@trpc/server": "^11.10.0",
"commander": "^14.0.3",
"discord.js": "^14.25.1",
"googleapis": "^171.4.0",
"mime-types": "^3.0.2",
"node-schedule": "^2.1.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"@types/mime-types": "^3.0.1",
"@types/node": "^25.3.0",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-formatter-codeframe": "^7.32.2",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"tsdown": "^0.20.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}