-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.21 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
44
{
"name": "obsidian-livesync-webclip",
"version": "0.0.6",
"description": "web clipper of obsidian-livesync",
"main": "index.js",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"clean": "rimraf dist",
"test": "npx jest",
"style": "prettier --write \"src/**/*.{ts,tsx}\""
},
"author": "",
"license": "MIT",
"dependencies": {
"quoted-printable": "^1.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"turndown": "^7.1.2",
"turndown-plugin-gfm": "^1.0.2"
},
"devDependencies": {
"@types/chrome": "0.0.242",
"@types/jest": "^29.5.3",
"@types/pouchdb": "^6.4.0",
"@types/react": "^18.2.17",
"@types/react-dom": "^18.2.7",
"@types/turndown": "^5.0.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"glob": "^10.3.3",
"jest": "^29.6.1",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.9.0",
"xxhash-wasm-102": "npm:xxhash-wasm@^1.0.2"
}
}