forked from BuilderIO/gpt-crawler
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.14 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
{
"name": "@builder.io/gpt-crawler",
"version": "0.0.1",
"type": "module",
"bin": {
"gpt-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",
"glob": "^10.3.10",
"inquirer": "^9.2.12",
"playwright": "*",
"prettier": "^3.1.0"
},
"devDependencies": {
"@apify/tsconfig": "^0.1.0",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.0.0",
"cross-env": "^7.0.3",
"ts-node": "^10.8.0",
"typescript": "^5.0.0"
},
"scripts": {
"preinstall": "npx playwright install",
"start": "npm run start:dev",
"start:cross-env": "npm run start:dev:cross-env",
"start:cli": "NODE_ENV=development npm run build && node dist/src/cli.js",
"start:dev": "NODE_ENV=development npm run build && node dist/src/main.js",
"start:dev:cross-env": "cross-env NODE_ENV=development npm run build && node dist/src/main.js",
"start:prod": "node dist/main.js",
"build": "tsc",
"fmt": "prettier --write ."
},
"author": "It's not you it's me",
"license": "ISC"
}