-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 976 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 976 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
26
27
28
29
30
31
32
33
34
{
"name": "page-highlight",
"version": "1.0.0",
"description": "Highlights text segments on the page when you click the icon",
"main": "dist/service-worker.bundle.js",
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development --watch",
"clean:dist": "rm -rf dist",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@types/chrome": "^0.1.32",
"@types/node": "^25.0.3",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"ts-loader": "^9.4.0",
"typescript": "^5.9.3",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@mozilla/readability": "^0.6.0",
"wink-eng-lite-web-model": "^1.8.1",
"wink-nlp": "^2.4.0"
}
}