-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.38 KB
/
package.json
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
36
37
38
39
40
41
42
43
{
"name": "obsidian-clipper",
"version": "0.2.2",
"description": "Obsidian Web Clipper Chrome Extension to save articles and pages from the web in Obsidian",
"private": true,
"scripts": {
"watch": "webpack --mode=development --watch --config config/webpack.config.js",
"build": "webpack --mode=production --config config/webpack.config.js",
"format": "prettier --write --ignore-unknown \"{config,public,src}/**/*.{html,css,js,ts,json}\"",
"test": "jest",
"package": "npm run build && cd build && zip -r obsidian-clipper.zip ."
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/chrome": "^0.0.181",
"@types/jest": "^29.2.6",
"@types/js-yaml": "^4.0.5",
"@types/turndown": "^5.0.1",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.3",
"eslint": "^9.9.0",
"file-loader": "^6.2.0",
"globals": "^15.9.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-webextension-mock": "^3.8.8",
"js-yaml": "^4.1.0",
"mini-css-extract-plugin": "^2.7.2",
"prettier": "^2.8.2",
"ts-jest": "^29.0.5",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"typescript-eslint": "^8.0.1",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@mozilla/readability": "^0.4.2",
"turndown": "^7.1.1"
}
}