forked from liajoy/image-stroke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "image-stroke",
"version": "0.1.1",
"description": "Makes stroke for a image with transparent background.",
"main": "./lib/index",
"module": "./lib/index",
"scripts": {
"dev": "parcel example/index.html -d example-dist",
"build": "tsc",
"build:example": "rm -rf public && parcel build example/index.html -d public --public-url public && mv public/index.html ."
},
"keywords": [
"canvas",
"outline",
"stroke"
],
"files": [
"lib"
],
"author": "liajoy",
"license": "MIT",
"homepage": "https://github.com/liajoy/image-stroke#readme",
"repository": "https://github.com/liajoy/image-stroke",
"dependencies": {
"color": "^3.1.2",
"marching-squares": "^0.2.0",
"twgl.js": "^4.14.2"
},
"devDependencies": {
"@types/color": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"parcel": "^1.12.4",
"typescript": "^3.1.4"
}
}