-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.21 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.21 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
{
"name": "captigo",
"private": true,
"version": "0.0.0",
"description": "Captigo monorepo — provider-agnostic CAPTCHA adapters, React, Vue, and Next.js helpers",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/moritzmyrz/captigo#readme",
"repository": {
"type": "git",
"url": "https://github.com/moritzmyrz/captigo.git"
},
"bugs": {
"url": "https://github.com/moritzmyrz/captigo/issues"
},
"scripts": {
"build": "pnpm --filter @captigo/core --filter @captigo/shared run build && pnpm -r run build",
"typecheck": "pnpm --filter @captigo/core --filter @captigo/shared run build && pnpm -r run typecheck",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "pnpm -r run test",
"clean": "pnpm -r run clean",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.15.4"
}