generated from chibat/chrome-extension-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
65 lines (65 loc) · 1.86 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "obsidian-web",
"version": "3.5.0",
"description": "Connect your browser with your notes in Obsidian",
"main": "index.js",
"scripts": {
"dev": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"build-icons-dev": "./scripts/build_icons.dev.sh",
"build-icons": "./scripts/build_icons.sh",
"dist-chrome": "./scripts/build_package.sh",
"clean": "rimraf dist",
"test": "npx jest",
"style": "prettier --write \"src/**/*.{ts,tsx}\""
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/coddingtonbear/obsidian-web.git"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mozilla/readability": "^0.4.2",
"@mui/icons-material": "^5.3.1",
"@mui/material": "^5.14.17",
"classnames": "^2.3.2",
"clone-deep": "^4.0.1",
"compare-versions": "^4.1.3",
"date-fns": "^2.28.0",
"detect-browser": "^5.3.0",
"escape-string-regexp": "^5.0.0",
"handlebars": "^4.7.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.6",
"react-joyride": "^2.7.2",
"turndown": "^7.1.1",
"turndown-plugin-gfm": "^1.0.2",
"usehooks-ts": "^2.9.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/chrome": "0.0.158",
"@types/clone-deep": "^4.0.4",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.80",
"@types/react-dom": "^17.0.25",
"@types/turndown": "^5.0.1",
"@types/uuid": "^8.3.4",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.8.1",
"glob": "^7.1.6",
"jest": "^27.2.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2 ",
"ts-jest": "^27.0.5",
"ts-loader": "^8.4.0",
"typescript": "^4.9.5",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0",
"webpack-merge": "^5.0.0"
}
}