-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.98 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.98 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "symbiote",
"version": "1.0.0",
"description": "Symbiote - A proactive GitHub automation agent that polls user events and acts on their behalf.",
"author": "Ubiquity DAO",
"license": "MIT",
"main": "src/worker.ts",
"type": "module",
"engines": {
"node": ">=24.11.0"
},
"scripts": {
"dev:bun": "bun --watch --no-clear-screen --port 4000 src/worker.ts",
"dev:deno": "deno serve --unstable-sloppy-imports --allow-all --unstable-kv --watch --no-clear-screen --port 4000 src/worker.ts",
"build": "tsc --project tsconfig.json",
"format": "run-p format:*",
"check-formatting": "run-p check-formatting:* format:cspell",
"check-formatting:lint": "eslint --fix-dry-run",
"format:lint": "eslint --fix .",
"format:prettier": "prettier --write .",
"check-formatting:prettier": "prettier --check .",
"format:cspell": "cspell **/*",
"knip": "knip --config .github/knip.ts",
"knip-ci": "knip --no-exit-code --reporter json --config .github/knip.ts",
"test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --setupFiles dotenv/config --coverage",
"test:oauth": "deno run --allow-all --env-file=.dev.vars t.ts --full",
"worker": "wrangler dev --env dev --port 4000",
"prepare": "husky"
},
"keywords": [
"typescript",
"template",
"dao",
"ubiquity",
"open-source"
],
"dependencies": {
"@azure/functions": "^4.9.0",
"@deno/kv": "^0.13.0",
"@marplex/hono-azurefunc-adapter": "^1.0.1",
"@octokit/auth-app": "^8.1.2",
"@sinclair/typebox": "0.34.41",
"@ubiquity-os/plugin-sdk": "^3.4.6",
"@ubiquity-os/ubiquity-os-logger": "^1.4.0",
"openai": "^4.77.3",
"dotenv": "17.2.3",
"hono": "^4.10.6",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@commitlint/cli": "20.1.0",
"@commitlint/config-conventional": "20.0.0",
"@cspell/dict-node": "5.0.8",
"@cspell/dict-software-terms": "5.1.13",
"@cspell/dict-typescript": "3.2.3",
"@eslint/js": "9.39.1",
"@jest/globals": "30.2.0",
"@mswjs/data": "0.16.2",
"@octokit/webhooks": "^14.1.3",
"@swc/core": "^1.15.2",
"@swc/jest": "^0.2.39",
"@types/deno": "^2.5.0",
"@types/jest": "^30.0.0",
"@types/node": "24.10.1",
"@ubiquity-os/eslint-plugin-no-empty-strings": "^1.0.3",
"@vercel/ncc": "0.38.4",
"cross-env": "^10.1.0",
"cspell": "9.3.2",
"eslint": "9.39.1",
"eslint-plugin-check-file": "3.3.1",
"eslint-plugin-sonarjs": "3.0.5",
"husky": "9.1.7",
"jest": "^30.2.0",
"jest-junit": "16.0.0",
"jest-md-dashboard": "0.8.1",
"knip": "5.69.1",
"lint-staged": "16.2.6",
"npm-run-all": "4.1.5",
"prettier": "3.6.2",
"typescript": "^5.9.3",
"typescript-eslint": "8.47.0",
"wrangler": "4.47.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
],
"src/**.{ts,json}": [
"cspell"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}