snapsvg/package.json

27 lines
683 B
JSON
Raw Normal View History

2024-03-05 13:02:24 +08:00
{
"name": "@bytedo/snapsvg",
"type": "module",
"version": "0.5.2",
"description": "JavaScript Vector Library",
2024-03-05 13:07:50 +08:00
"main": "dist/index.js",
2024-03-05 13:02:24 +08:00
"repository": {
"type": "git",
"url": "git@git.wkit.fun:bytedo/snapsvg.git"
},
"scripts": {
"start": "esbuild src/index.js --watch --bundle --format=esm --target=esnext --outfile=dist/index.js",
"pack": "esbuild src/index.js --minify --bundle --format=esm --target=esnext --outfile=dist/index.js"
},
"author": "Dmitry Baranovskiy",
"contributors": [
{
"name": "yutent",
"email": "yutent.io@gmail.com"
}
],
"license": "Apache-2.0",
"devDependencies": {
"esbuild": "^0.20.1"
}
}