forked from ubiquity-os-marketplace/text-vector-embeddings
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.13 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.13 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
99
100
101
102
103
104
{
"name": "@ubiquity-os/text-vector-embeddings",
"version": "1.0.0",
"description": "Generates vector embeddings of GitHub comments and stores them in Supabase.",
"author": "Ubiquity DAO",
"license": "MIT",
"main": "src/main.ts",
"type": "module",
"engines": {
"node": ">=24.11.0"
},
"scripts": {
"build": "tsc --noEmit",
"format": "run-p format:*",
"format:lint": "eslint --fix .",
"format:prettier": "prettier --write .",
"format:cspell": "cspell **/*",
"knip": "knip --config .github/knip.ts",
"knip-ci": "knip --no-exit-code --reporter json --config .github/knip.ts",
"prepare": "bun run prepare:manifest && husky install",
"prepare:manifest": "bunx @ubiquity-os/plugin-manifest-tool@latest",
"test": "bun test",
"worker": "wrangler dev --env dev --port 4004",
"dev": "deno serve --port 4004 --unstable-sloppy-imports --allow-all --watch src/worker.ts",
"supabase:generate:local": "supabase gen types typescript --local > src/types/database.ts",
"supabase:generate:remote": "cross-env-shell \"supabase gen types typescript --project-id $SUPABASE_PROJECT_ID --schema public > src/types/database.ts\"",
"prebuild": "bun run prepare:manifest",
"predev": "bun run prepare:manifest"
},
"keywords": [
"typescript",
"template",
"dao",
"ubiquity",
"open-source"
],
"dependencies": {
"@hono/standard-validator": "^0.2.0",
"@hono/swagger-ui": "^0.5.2",
"@octokit/auth-app": "^8.1.2",
"@octokit/openapi-types": "^27.0.0",
"@sinclair/typebox": "^0.34.41",
"@supabase/supabase-js": "^2.84.0",
"@ubiquity-os/plugin-sdk": "3.12.8",
"@ubiquity-os/ubiquity-os-logger": "^1.4.0",
"@valibot/to-json-schema": "^1.3.0",
"dotenv": "16.4.5",
"he": "^1.2.0",
"hono": "^4.10.6",
"hono-openapi": "^1.1.1",
"hono-rate-limiter": "^0.4.2",
"jsdom": "^26.1.0",
"marked": "^16.2.0",
"quansync": "^0.2.11",
"valibot": "1.2.0",
"voyageai": "^0.0.4"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@cspell/dict-node": "5.0.1",
"@cspell/dict-software-terms": "3.4.6",
"@cspell/dict-typescript": "3.1.5",
"@eslint/js": "9.5.0",
"@mswjs/data": "0.16.1",
"@types/bun": "^1.2.19",
"@types/deno": "^2.3.0",
"@types/he": "^1.2.3",
"@types/jsdom": "^21.1.7",
"@types/node": "20.14.5",
"cross-env": "7.0.3",
"cspell": "8.9.0",
"eslint": "9.5.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-check-file": "2.8.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-sonarjs": "1.0.3",
"fast-xml-parser": "^5.2.5",
"husky": "9.0.11",
"knip": "5.21.2",
"lint-staged": "15.2.7",
"npm-run-all": "4.1.5",
"prettier": "3.3.2",
"supabase": "2.58.5",
"ts-node": "^10.9.2",
"typescript": "5.9.3",
"typescript-eslint": "8.47.0",
"wrangler": "3.89.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
],
"src/**.{ts,json}": [
"cspell"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}