Improve package.json
This commit is contained in:
parent
36c64554f5
commit
2c26e07932
1 changed files with 26 additions and 9 deletions
35
package.json
35
package.json
|
|
@ -1,21 +1,38 @@
|
||||||
{
|
{
|
||||||
"name": "sdf-2d",
|
"name": "sdf-2d",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"scripts": {
|
"description": "Graphics framework for efficiently handling 2D signed distance fields.",
|
||||||
"start": "shx rm -rf lib/* && webpack --watch",
|
"keywords": [
|
||||||
"build": "shx rm -rf lib/* && webpack --production"
|
"webgl",
|
||||||
},
|
"glsl",
|
||||||
"keywords": [],
|
"sdf",
|
||||||
"author": "András Schmelczer",
|
"2d",
|
||||||
"browserslist": [
|
"graphics",
|
||||||
"defaults"
|
"rendering",
|
||||||
|
"renderer",
|
||||||
|
"drawing",
|
||||||
|
"drawer"
|
||||||
],
|
],
|
||||||
|
"author": "András Schmelczer <andras@schmelczer.dev> (https://schmelczer.dev/)",
|
||||||
|
"homepage": "https://github.com/schmelczerandras/sdf-2d#readme",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/schmelczerandras/sdf-2d/issues",
|
||||||
|
"email": "andras@schmelczer.dev"
|
||||||
|
},
|
||||||
|
"license": "ISC",
|
||||||
|
"scripts": {
|
||||||
|
"start": "shx rm -rf lib/* && webpack --mode development -w",
|
||||||
|
"build": "shx rm -rf lib/* && webpack --mode production"
|
||||||
|
},
|
||||||
"main": "lib/main.js",
|
"main": "lib/main.js",
|
||||||
"sideEffects": false,
|
|
||||||
"types": "lib/src/main.d.ts",
|
"types": "lib/src/main.d.ts",
|
||||||
"files": [
|
"files": [
|
||||||
"lib"
|
"lib"
|
||||||
],
|
],
|
||||||
|
"sideEffects": false,
|
||||||
|
"optimization": {
|
||||||
|
"usedExports": true
|
||||||
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@typescript-eslint/eslint-plugin": "^3.10.1",
|
"@typescript-eslint/eslint-plugin": "^3.10.1",
|
||||||
"@typescript-eslint/parser": "^3.10.1",
|
"@typescript-eslint/parser": "^3.10.1",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue