-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "offset-polygon",
"version": "0.9.2",
"description": "",
"main": "lib/offset-polygon.js",
"module": "lib/offset-polygon.js",
"types": "lib/offset-polygon.d.ts",
"scripts": {
"start": "snowpack dev",
"build-demo": "rm -rf ./docs && snowpack build && git add ./docs/",
"types": "tsc ./src/offset-polygon.ts --declaration --emitDeclarationOnly --outDir lib",
"build": "esbuild --bundle --sourcemap --format=esm ./src/offset-polygon.ts --outfile=lib/offset-polygon.js",
"build-all": "npm run types && npm run build",
"prepublish": "npm run build-all"
},
"keywords": [
"polygon",
"offset",
"padding",
"margin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Stanko/offset-polygon.git"
},
"author": "Stanko",
"license": "MIT",
"devDependencies": {
"@snowpack/plugin-svelte": "^3.7.0",
"esbuild": "^0.13.8",
"snowpack": "^3.8.8",
"svelte": "^3.44.0",
"typescript": "^4.4.4"
},
"publishConfig": {
"access": "public"
}
}