-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 903 Bytes
/
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
{
"name": "webgl-sdf-generator",
"version": "1.1.1",
"description": "WebGL-accelerated signed distance field generation for 2D paths",
"main": "dist/webgl-sdf-generator.js",
"module": "dist/webgl-sdf-generator.mjs",
"repository": {
"type": "git",
"url": "https://github.com/lojjic/webgl-sdf-generator.git"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "npm run build && node test/run.js"
},
"author": "Jason Johnston",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
"@rollup/plugin-buble": "^0.21.3",
"event-target-polyfill": "0.0.3",
"gl": "^4.9.2",
"rollup": "^2.56.3",
"rollup-plugin-glsl": "^1.3.0",
"rollup-plugin-terser": "^7.0.2"
},
"files": [
"/dist",
"/LICENSE.txt",
"/README.md"
]
}