-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
80 lines (80 loc) · 2.88 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "obsidian-annotator",
"version": "0.2.11",
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
"prettier-format": "prettier --config .prettierrc.js src/**/*.tsx --write",
"lint": "eslint src --ext .ts,.tsx",
"dev": "rollup --config rollup.config.js -w",
"test": "jest",
"quick-build": "rollup --config rollup.config.js --environment BUILD:production",
"build": "npm run build-hypothesis && npm run quick-build",
"build-hypothesis": "rimraf resources/cdn.hypothes.is/hypothesis/build && cd submodules/hypothesis-client-annotator-fork && make build && cd ../.. && move-file submodules/hypothesis-client-annotator-fork/build resources/cdn.hypothes.is/hypothesis/build",
"win-build": "npm run win-build-hypothesis && npm run quick-build",
"win-build-hypothesis": "rimraf resources/cdn.hypothes.is/hypothesis/build && cd submodules/hypothesis-client-annotator-fork && npm i --force && npm run build && cd ../.. && move-file submodules/hypothesis-client-annotator-fork/build resources/cdn.hypothes.is/hypothesis/build",
"betterer": "betterer"
},
"keywords": [],
"author": "",
"license": "MIT",
"browserslist": [
"electron >= 18",
"android >= 5",
"ios >= 12.1"
],
"devDependencies": {
"@betterer/cli": "^5.3.6",
"@betterer/eslint": "^5.3.6",
"@betterer/typescript": "^5.3.6",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^27.0.1",
"@types/mime": "^2.0.3",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^5.29.3",
"@typescript-eslint/parser": "^5.29.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-react": "^7.24.0",
"jest": "^27.1.1",
"magic-string": "^0.25.7",
"minify": "^7.0.2",
"move-file-cli": "^3.0.0",
"obsidian": "latest",
"obsidian-dataview": "^0.5.41",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"rollup": "^2.32.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-polyfill-node": "^0.7.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.5",
"tslib": "^2.4.0",
"typescript": "^4.7.0"
},
"dependencies": {
"@rollup/plugin-replace": "^2.2.0",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"canvas": "^2.7.0",
"cheerio": "^1.0.0-rc.10",
"core-js": "^3.17.2",
"epubjs": "^0.3.93",
"he": "^1.1.1",
"jszip": "^3.7.1",
"lodash": "^4.17.4",
"mime": "^3.0.0",
"monkey-around": "^2.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-offline-iframe": "^0.5.0",
"striptags": "^3.2.0"
}
}