-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 787 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 787 Bytes
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
{
"name": "pilma",
"version": "0.1.0",
"private": true,
"description": "Privacy-first PII firewall baseline for LLM chat UIs.",
"scripts": {
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
"format": "prettier --write .",
"typecheck": "tsc --noEmit -p tsconfig.json",
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"openssf:check": "node scripts/openssf-readiness.cjs",
"companion": "npm run build && node dist/companion/index.js"
},
"devDependencies": {
"@types/node": "25.5.0",
"@typescript-eslint/eslint-plugin": "8.57.1",
"@typescript-eslint/parser": "8.57.1",
"eslint": "10.0.3",
"eslint-visitor-keys": "4.2.1",
"prettier": "3.8.1",
"typescript": "5.9.3",
"vitest": "4.1.0"
}
}