-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
59 lines (59 loc) · 1.47 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
{
"name": "canvas-select",
"version": "2.24.0",
"description": "一个用于图片标注的javascript库,基于canvas,简单轻量,支持矩形、多边形、点、折线、圆形、网格。",
"main": "lib/canvas-select.min.js",
"types": "lib/src/index.d.ts",
"type": "module",
"engines": {
"node": "~14||~16"
},
"scripts": {
"watch": "rollup -c -w",
"build": "rollup -c",
"serve": "live-server --watch=./index.html,./lib --port=9999",
"dev": "npm run watch & npm run serve"
},
"files": [
"/lib"
],
"keywords": [
"canvas",
"marker",
"annotation",
"rect",
"polygon",
"dot",
"line",
"circle",
"grid",
"标注",
"矩形",
"多边形",
"点",
"折线",
"圆",
"网格"
],
"author": "heylight",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.6",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-json": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"live-server": "git+https://github.com/tapio/live-server.git#ad22544",
"rollup": "^2.53.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
},
"homepage": "https://github.com/heylight/canvas-select",
"repository": {
"type": "git",
"url": "git+https://github.com/heylight/canvas-select.git"
}
}