34 lines
816 B
JSON
34 lines
816 B
JSON
{
|
|
"name": "wkit",
|
|
"version": "1.10.1",
|
|
"type": "module",
|
|
"description": "A library for building fast, lightweight web components.",
|
|
"main": "dist/index.js",
|
|
"files": [
|
|
"dist/*"
|
|
],
|
|
"scripts": {
|
|
"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"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/bytedo/wkit.git"
|
|
},
|
|
"keywords": [
|
|
"wkit",
|
|
"wcui",
|
|
"web-components",
|
|
"native",
|
|
"cross-framework",
|
|
"html",
|
|
"css"
|
|
],
|
|
"devDependencies": {
|
|
"esbuild": "^0.17.11"
|
|
},
|
|
"author": "yutent",
|
|
"license": "MIT"
|
|
}
|
JavaScript
97%
HTML
3%