-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.36 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
{
"name": "canvas-click-wrapper",
"version": "1.0.0",
"description": "Light wrapper that handles touch and mouse clicks as coordinates on the canvas",
"main": "dist/canvas-click.min.js",
"types": "dist/canvas-click.d.ts",
"scripts": {
"clean": "rimraf ./dist",
"build:js": "rollup -c rollup.config.js",
"build:minjs": "terser ./dist/canvas-click.js --compress --mangle > ./dist/canvas-click.min.js",
"build": "npm run clean && npm run build:js -s && npm run build:minjs"
},
"funding": "https://www.patreon.com/PresentKim",
"repository": {
"type": "git",
"url": "git+https://github.com/PresentKim/canvas-click-wrapper-wrapper.git"
},
"keywords": [
"html",
"browser",
"canvas",
"wrapper",
"canvas-click-wrapper",
"typescript"
],
"author": "PresentKim <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PresentKim/canvas-click-wrapper/issues"
},
"homepage": "https://github.com/PresentKim/canvas-click-wrapper",
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"core-js": "^3.19.0",
"rimraf": "^3.0.2",
"rollup": "^2.59.0",
"terser": "^5.9.0",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
},
"packageManager": "[email protected]"
}