2020-07-15 21:30:37 +00:00
|
|
|
{
|
|
|
|
"name": "@shoelace-style/shoelace",
|
|
|
|
"description": "A forward-thinking library of web components.",
|
2021-03-23 21:14:38 +00:00
|
|
|
"version": "2.0.0-beta.35",
|
2021-02-26 14:09:13 +00:00
|
|
|
"homepage": "https://github.com/shoelace-style/shoelace",
|
2020-12-29 19:57:45 +00:00
|
|
|
"author": "Cory LaViska",
|
|
|
|
"license": "MIT",
|
2021-02-26 14:09:13 +00:00
|
|
|
"main": "dist/shoelace.js",
|
|
|
|
"module": "dist/shoelace.js",
|
|
|
|
"type": "module",
|
|
|
|
"types": "dist/shoelace.d.ts",
|
2020-07-15 21:30:37 +00:00
|
|
|
"files": [
|
2021-02-26 14:09:13 +00:00
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"keywords": [
|
|
|
|
"web components",
|
|
|
|
"custom elements",
|
|
|
|
"components"
|
2020-07-15 21:30:37 +00:00
|
|
|
],
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-02-26 14:09:13 +00:00
|
|
|
"url": "git+https://github.com/shoelace-style/shoelace.git"
|
2020-07-15 21:30:37 +00:00
|
|
|
},
|
2020-12-29 19:57:45 +00:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/shoelace-style/shoelace/issues"
|
|
|
|
},
|
2020-07-15 21:30:37 +00:00
|
|
|
"funding": {
|
|
|
|
"type": "individual",
|
|
|
|
"url": "https://github.com/sponsors/claviska"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2021-03-07 14:02:57 +00:00
|
|
|
"start": "node scripts/build.cjs --dev",
|
2021-02-26 14:09:13 +00:00
|
|
|
"build": "node scripts/build.cjs",
|
2021-03-24 14:21:21 +00:00
|
|
|
"prepublishOnly": "npm run build",
|
2021-02-26 14:09:13 +00:00
|
|
|
"prettier": "prettier --write --loglevel warn ."
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@popperjs/core": "^2.7.0",
|
|
|
|
"@shoelace-style/animations": "^1.1.0",
|
2021-03-06 17:01:39 +00:00
|
|
|
"color": "^3.1.3",
|
2021-03-24 14:21:21 +00:00
|
|
|
"lit": "^2.0.0-pre.1",
|
|
|
|
"lit-html": "^2.0.0-pre.6"
|
2020-07-15 21:30:37 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-12-16 13:21:01 +00:00
|
|
|
"@types/color": "^3.0.1",
|
2021-02-26 14:09:13 +00:00
|
|
|
"@types/resize-observer-browser": "^0.1.5",
|
2020-07-15 21:30:37 +00:00
|
|
|
"bluebird": "^3.7.2",
|
2021-03-30 12:49:58 +00:00
|
|
|
"bootstrap-icons": "^1.4.1",
|
2021-02-26 14:09:13 +00:00
|
|
|
"browser-sync": "^2.26.14",
|
|
|
|
"chalk": "^4.1.0",
|
|
|
|
"command-line-args": "^5.1.1",
|
|
|
|
"comment-parser": "^1.1.2",
|
|
|
|
"concurrently": "^5.3.0",
|
|
|
|
"del": "^6.0.0",
|
2020-07-15 21:30:37 +00:00
|
|
|
"download": "^8.0.0",
|
2021-03-02 22:23:49 +00:00
|
|
|
"esbuild": "^0.8.54",
|
2021-02-26 14:09:13 +00:00
|
|
|
"esbuild-plugin-inline-import": "^1.0.0",
|
|
|
|
"esbuild-plugin-sass": "^0.3.3",
|
2020-07-15 21:30:37 +00:00
|
|
|
"front-matter": "^4.0.2",
|
2021-02-26 14:09:13 +00:00
|
|
|
"get-port": "^5.1.1",
|
2020-07-15 21:30:37 +00:00
|
|
|
"glob": "^7.1.6",
|
2021-02-26 14:09:13 +00:00
|
|
|
"husky": "^4.3.8",
|
|
|
|
"prettier": "^2.2.1",
|
|
|
|
"recursive-copy": "^2.0.11",
|
|
|
|
"sass": "^1.32.7",
|
|
|
|
"tiny-glob": "^0.2.8",
|
|
|
|
"tslib": "^2.1.0",
|
|
|
|
"typedoc": "^0.20.28",
|
|
|
|
"typescript": "4.1.5",
|
|
|
|
"wait-on": "^5.2.1"
|
2020-07-15 21:30:37 +00:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2021-02-26 14:09:13 +00:00
|
|
|
"pre-commit": "npm run prettier"
|
2020-07-15 21:30:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|