-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 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
56
57
58
59
60
{
"name": "img-map-area",
"version": "1.5.0",
"description": "A library that makes Image Map Area responsive.",
"type": "module",
"main": "dist/img-map-area.cjs.js",
"module": "dist/img-map-area.esm.js",
"browser": "dist/img-map-area.umd.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/img-map-area.esm.js",
"require": "./dist/img-map-area.cjs.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"release": "npm run build && changelogen --release && npm publish --access=public && git push --follow-tags"
},
"keywords": [
"img",
"responsive",
"image-map-area",
"responsive-img",
"responsive-map-area"
],
"author": {
"name": "elenh",
"email": "yisiwings@163.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yisibell/img-map-area.git"
},
"homepage": "https://github.com/yisibell/img-map-area",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"changelogen": "^0.5.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"prettier": "^3.1.1",
"rollup": "^4.9.2",
"rollup-plugin-dts": "^6.1.0",
"tslib": "^2.6.2",
"typescript": "~5.3.3"
}
}