-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.86 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.86 KB
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
{
"name": "default-viewer",
"displayName": "Default viewer",
"description": "Default viewer",
"version": "0.0.0",
"publisher": "faraday",
"author": "Mikhail Isupov",
"license": "MIT",
"scripts": {
"build": "rollup --config rollup.code.config.mjs && rollup --config rollup.image.config.mjs && rollup --config rollup.markdown.config.mjs",
"commit": "git-cz",
"semantic-release": "semantic-release --branches main",
"lint": "eslint ./src --ext .ts,.tsx"
},
"repository": {
"type": "git",
"url": "https://github.com/faraday-fm/default-viewer.git"
},
"engines": {
"faraday": ">=0.0.0"
},
"keywords": [
"quickview",
"image"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.0",
"@types/parsimmon": "^1.10.6",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/rollup-plugin-generate-package-json": "^3.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.35.0",
"eslint-config-airbnb-typescript-prettier": "^5.0.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-simple-import-sort": "^8.0.0",
"git-cz": "^4.9.0",
"prettier": "^2.8.4",
"rollup": "^3.19.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-generate-package-json": "^3.2.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-styles": "^4.0.0",
"rollup-plugin-ts": "^3.2.0",
"semantic-release": "^19.0.5",
"typescript": "^5.0.2"
},
"dependencies": {
"@monaco-editor/loader": "^1.3.2",
"@monaco-editor/react": "^4.4.6",
"@types/markdown-it": "^12.2.3",
"markdown-it": "^13.0.1",
"monaco-editor": "^0.36.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}