-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.34 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.34 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
{
"name": "crawlith",
"version": "0.1.1",
"license": "Apache-2.0",
"type": "module",
"private": true,
"description": "Professional-grade SEO crawling and graph intelligence suite.",
"bin": {
"crawlith": "packages/cli/dist/index.js"
},
"scripts": {
"build": "pnpm --filter \"./packages/**\" build",
"test": "pnpm --filter \"./packages/**\" test",
"lint": "eslint .",
"crawlith": "node packages/cli/dist/index.js",
"rebuild": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && find . -name 'dist' -type d -prune -exec rm -rf '{}' + && pnpm install && pnpm build",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "npm run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.3.5",
"@types/update-notifier": "^6.0.8",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.3",
"rimraf": "^6.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"update-notifier": "^7.3.1",
"vite": "7.3.1"
}
}