generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.68 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.68 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
{
"name": "supabase-embeddings-generator",
"version": "0.0.6",
"private": true,
"description": "A GitHub Action that converts your markdown files into embeddings and stores them in your Postgres/Supabase database, allowing you to perform vector similarity search inside your documentation and website.",
"main": "src/main.ts",
"scripts": {
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run format && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supabase/supabase-vector-embeddings-github-action"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@supabase/supabase-js": "^2.38.4",
"github-slugger": "^2.0.0",
"mdast": "^3.0.0",
"mdast-util-from-markdown": "^1.3.0",
"mdast-util-mdx": "^2.0.1",
"mdast-util-to-markdown": "^1.5.0",
"mdast-util-to-string": "^3.2.0",
"micromark-extension-mdxjs": "^1.0.1",
"openai": "^3.2.1",
"unist-builder": "^3.0.1",
"unist-util-filter": "^4.0.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/estree": "^1.0.1",
"@types/node": "^20.8.2",
"@types/uuid": "^9.0.4",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.42.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.2.2",
"jest": "^29.6.4",
"js-yaml": "^4.1.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}