19 lines
552 B
JSON
19 lines
552 B
JSON
{
|
|
"name": "wkitd",
|
|
"version": "1.1.3",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"files": [
|
|
"dist/*"
|
|
],
|
|
"scripts": {
|
|
"build:next": "esbuild src/index.js --minify --bundle --external:wkit --format=esm --target=esnext --outfile=dist/index.js",
|
|
"build:es6": "esbuild src/index.js --minify --bundle --external:wkit --format=esm --target=es6 --outfile=dist/index.es6.js",
|
|
"build": "npm run build:next && npm run build:es6"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://git.wkit.fun/bytedo/wkitd.git"
|
|
}
|
|
}
|