-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.12 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
{
"name": "truthlens",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Surfaces provenance, counter-evidence, and rhetorical framing for the text and images on the page you're reading.",
"license": "Apache-2.0",
"packageManager": "pnpm@11.18.0",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "pnpm --filter @truthlens/extension dev",
"build": "pnpm -r build",
"codegen": "pnpm --filter @truthlens/shared codegen",
"codegen:check": "pnpm --filter @truthlens/shared codegen:check",
"typecheck": "pnpm -r typecheck",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"size": "node scripts/check-bundle-size.mjs",
"verify": "pnpm codegen:check && pnpm lint && pnpm format:check && pnpm typecheck && pnpm test && pnpm build && pnpm size"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.10.0",
"eslint": "^10.8.0",
"globals": "^16.0.0",
"prettier": "^3.4.0",
"typescript": "6.0.3",
"typescript-eslint": "^8.65.0",
"vitest": "^4.1.10"
}
}