-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 KB
/
package.json
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
{
"name": "chatgpt-well-known-plugin-finder",
"version": "0.1.0",
"private": true,
"description": "Checks Alexa's top 1M websites for the presence of OpenAI's new .well-known/ai-plugin.json files.",
"author": "Travis Fischer <[email protected]>",
"repository": "transitive-bullshit/chatgpt-well-known-plugin-finder",
"homepage": "https://chatgpt-well-known-plugin-finder.vercel.app",
"license": "MIT",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc",
"prepare": "husky install",
"pre-commit": "lint-staged",
"test": "run-p test:*",
"test:prettier": "prettier '**/*.{js,jsx,ts,tsx}' --check"
},
"dependencies": {
"cli-progress": "^3.12.0",
"flat-cache": "^3.0.4",
"got": "^12.6.0",
"p-map": "^5.5.0",
"p-memoize": "^7.1.1",
"papaparse": "^5.4.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/cli-progress": "^3.11.0",
"@types/flat-cache": "^2.0.0",
"@types/node": "18.15.3",
"husky": "^8.0.2",
"lint-staged": "^13.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"typescript": "4.9.5"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
},
"keywords": [
"ai",
"well-known",
"ai-plugin",
"chatgpt",
"plugin",
"gpt",
"gpt-3",
"gpt3",
"gpt4",
"gpt-4",
"chatbot",
"machine learning",
"ml",
"bot"
]
}