-
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 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1 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": "claude-bridge",
"version": "1.0.0",
"description": "Universal web editor bridge for Claude in Chrome",
"scripts": {
"build": "webpack --config webpack.config.js --mode production",
"dev": "webpack --config webpack.config.js --mode development --watch",
"test": "jest",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:e2e": "playwright test tests/e2e",
"lint": "eslint src/**/*.js",
"package": "npm run build && node scripts/package-extension.js"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {},
"testPathIgnorePatterns": [
"/node_modules/",
"/tests/e2e/"
],
"moduleNameMapper": {
"^chrome$": "<rootDir>/tests/mocks/chrome.mock.js"
}
},
"devDependencies": {
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4",
"jest": "^29.6.0",
"jest-environment-jsdom": "^29.6.0",
"@playwright/test": "^1.40.0",
"eslint": "^8.50.0",
"copy-webpack-plugin": "^11.0.0"
}
}