-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.29 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": "webforai",
"version": "0.0.0",
"description": "A library that provides a web interface for AI",
"author": "inaridiy",
"repository": {
"type": "git",
"url": "https://github.com/inaridiy/webforai.git"
},
"homepage": "https://webforai.dev/",
"bugs": "https://github.com/inaridiy/webforai/issues",
"keywords": ["ai", "web", "scraping"],
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "vitest",
"build": "pnpm run --r --filter \"./packages/**\" build",
"format": "biome format .",
"format:fix": "pnpm format --write .",
"lint": "biome check .",
"lint:fix": "pnpm lint --apply",
"lint:repo": "sherif",
"typecheck": "pnpm run --filter \"./packages/**\" typecheck",
"ci:prepublish": "pnpm run build",
"ci:version": "changeset version",
"ci:publish": "pnpm ci:prepublish && changeset publish",
"preinstall": "npx only-allow pnpm",
"prepare": "pnpm simple-git-hooks",
"postinstall": "pnpm -w build"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.5",
"sherif": "^0.8.4",
"simple-git-hooks": "^2.11.1",
"vitest": "1.3.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm format && pnpm lint && pnpm lint:repo && pnpm typecheck"
}
}