-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.92 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.92 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
{
"name": "fcrawl",
"version": "0.3.2",
"description": "Web crawler using Firecrawl API that saves pages as local Markdown files",
"module": "index.ts",
"type": "module",
"bin": {
"fcrawl": "./bin/fcrawl"
},
"scripts": {
"build": "bun run build.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"test:links": "bun test src/tests/transform.test.ts",
"test:integration": "bun run build && bun test src/tests/integration.test.ts",
"test:isolated": "find tests -name '*.test.ts' | xargs -P 8 -I {} sh -c 'bun test {} || exit 255'",
"test:unit": "find tests -name '*.test.ts' ! -name 'firecrawl-health.test.ts' ! -name 'subcommands.test.ts' | xargs -P 8 -I {} sh -c 'bun test {} || exit 255'",
"test:health": "bun test tests/firecrawl-health.test.ts",
"test:ci:linux": "bun run test:unit && bun run test:health && bun test tests/subcommands.test.ts",
"test:ci:other": "bun run test:unit",
"typecheck": "bun tsc --noEmit",
"lint": "biome check . && bun run typecheck",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"check": "biome check .",
"version": "changeset version",
"release": "changeset tag && git push --follow-tags"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.4",
"@types/bun": "latest",
"lefthook": "^1.11.13"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@mendable/firecrawl-js": "^1.25.3",
"@types/react": "^19.1.6",
"commander": "^14.0.0",
"ink": "^6.0.0",
"ink-spinner": "^5.0.0",
"react": "^19.1.0",
"react-devtools-core": "^6.1.2",
"zod": "^3.25.51"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}