forked from wanadev/perspective.js
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 922 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 922 Bytes
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
{
"name": "perspectivets",
"version": "2.0.0",
"description": "Transforms the perspective of an image and draw it on a canvas",
"main": "./build/index.js",
"module": "./build/index.es.js",
"files": [
"build/**/*"
],
"scripts": {
"build": "rollup -c",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/adonmo/perspective.ts.git"
},
"keywords": [
"canvas",
"perspective",
"tranform"
],
"author": "Adonmo",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adonmo/perspective.ts/issues"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"rollup": "^2.43.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.2.3"
}
}