wkitd/package.json

19 lines
552 B
JSON
Raw Permalink Normal View History

2023-08-09 11:09:39 +08:00
{
"name": "wkitd",
"version": "1.3.9",
2023-08-09 11:09:39 +08:00
"type": "module",
"main": "dist/index.js",
"files": [
"dist/*"
],
"scripts": {
2023-08-14 18:18:41 +08:00
"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",
2023-08-09 11:09:39 +08:00
"build": "npm run build:next && npm run build:es6"
},
"repository": {
"type": "git",
2023-08-30 16:32:50 +08:00
"url": "git+https://git.wkit.fun/bytedo/wkitd.git"
2023-08-09 11:09:39 +08:00
}
}