-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
55 lines (55 loc) · 1.61 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
{
"name": "markerjs2",
"version": "2.32.3",
"description": "JavaScript image annotation",
"main": "markerjs2.js",
"module": "markerjs2.esm.js",
"types": "markerjs2.d.ts",
"author": "Alan Mendelevich",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"lint": "eslint src",
"build": "yarn lint && rollup --config rollup.config.prod.js",
"start": "rollup --config rollup.config.dev.js -w",
"docs": "typedoc --excludePrivate --excludeExternals --exclude \"src/index.ts\" -mode file --out docs src --name \"marker.js 2 Class Reference\" --disableSources --readme none"
},
"repository": {
"type": "git",
"url": "https://github.com/ailon/markerjs2"
},
"keywords": [
"annotate",
"mark",
"highlight",
"image",
"photo",
"graphics",
"javascript",
"typescript",
"comment"
],
"devDependencies": {
"@rollup/plugin-typescript": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"prettier": "^2.1.1",
"rollup": "^2.26.5",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dev": "^1.1.2",
"rollup-plugin-dts": "^1.4.12",
"rollup-plugin-generate-html-template": "^1.7.0",
"rollup-plugin-generate-package-json": "^3.2.0",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-svgo": "^1.1.0",
"rollup-plugin-terser": "^7.0.0",
"tslib": "^2.0.1",
"typedoc": "^0.18.0",
"typescript": "^4.0.2"
},
"dependencies": {
"@types/resize-observer-browser": "^0.1.4"
}
}