-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.13 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
{
"name": "claude-code-for-jetbrains",
"version": "0.0.0",
"private": true,
"description": "Build-time tooling for the Claude Code Native IntelliJ plugin: frontend tests and protocol-drift reference. Nothing here is published or shipped.",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run build && vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/main/resources/jcef/**/*.{js,css,html}\" \"src/main/ts/**/*.ts\" \"src/test/frontend/**/*.js\"",
"format:check": "prettier --check \"src/main/resources/jcef/**/*.{js,css,html}\" \"src/main/ts/**/*.ts\" \"src/test/frontend/**/*.js\""
},
"license": "GPL-3.0-only",
"type": "commonjs",
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.223",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/js": "^10.0.1",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.9.0",
"jsdom": "^29.1.1",
"prettier": "^3.9.6",
"vitest": "^4.1.10"
}
}