forked from BuilderIO/gpt-crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.39 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
{
"name": "repo-crawler-for-gpt",
"version": "1.0.12",
"repository": "https://github.com/FTAndy/repo-crawler-for-gpt",
"main": "dist/src/index.js",
"bin": {
"gpt-repo-crawler": "./dist/src/cli.js"
},
"description": "Crawl a site to generate knowledge files to create your own custom GPT",
"dependencies": {
"commander": "^11.1.0",
"crawlee": "^3.0.0",
"cross-env": "^7.0.3",
"glob": "^10.3.10",
"inquirer": "^8.2.6",
"minimatch": "^9.0.3",
"playwright": "*",
"prettier": "^3.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@apify/tsconfig": "^0.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.0.0",
"rimraf": "^5.0.5",
"semantic-release": "^22.0.8",
"ts-node": "^10.8.0",
"typescript": "^5.0.0"
},
"scripts": {
"semantic-release": "semantic-release",
"preinstall": "npx playwright install",
"start": "npm run start:dev",
"start:cli": "cross-env NODE_ENV=development npm run build && node dist/src/cli.js",
"start:dev": "cross-env NODE_ENV=development npm run build && node dist/src/main.js",
"start:prod": "node dist/src/main.js",
"build": "rimraf ./dist && tsc",
"fmt": "prettier --write .",
"test:build": "npm run build && chmod +x ./dist/src/cli.js"
},
"author": "Andy Qin",
"license": "ISC"
}