wkit/package.json

34 lines
818 B
JSON
Raw Permalink Normal View History

2023-03-06 12:25:54 +08:00
{
2023-05-25 15:33:31 +08:00
"name": "wkit",
2023-11-23 10:32:30 +08:00
"version": "1.11.0",
2023-03-06 12:25:54 +08:00
"type": "module",
2023-05-25 15:33:31 +08:00
"description": "A library for building fast, lightweight web components.",
2023-03-06 12:25:54 +08:00
"main": "dist/index.js",
"files": [
"dist/*"
],
2023-03-07 19:26:32 +08:00
"scripts": {
2023-03-21 16:46:53 +08:00
"build:next": "esbuild src/index.js --minify --bundle --format=esm --target=esnext --outfile=dist/index.js",
"build:es6": "esbuild src/index.js --minify --bundle --format=esm --target=es6 --outfile=dist/index.es6.js",
"build": "npm run build:next && npm run build:es6"
2023-03-07 19:26:32 +08:00
},
2023-03-06 12:25:54 +08:00
"repository": {
"type": "git",
"url": "git+https://git.wkit.fun/bytedo/wkit.git"
2023-03-06 12:25:54 +08:00
},
"keywords": [
2023-05-25 15:33:31 +08:00
"wkit",
2023-03-13 18:37:12 +08:00
"wcui",
2023-04-03 10:50:18 +08:00
"web-components",
"native",
"cross-framework",
"html",
"css"
2023-03-06 12:25:54 +08:00
],
"devDependencies": {
"esbuild": "^0.17.11"
},
"author": "yutent",
"license": "MIT"
}