mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 04:09:12 +00:00
Shoemaker rework
This commit is contained in:
116
package.json
116
package.json
@@ -2,25 +2,24 @@
|
||||
"name": "@shoelace-style/shoelace",
|
||||
"description": "A forward-thinking library of web components.",
|
||||
"version": "2.0.0-beta.27",
|
||||
"homepage": "https://shoelace.style/",
|
||||
"homepage": "https://github.com/shoelace-style/shoelace",
|
||||
"author": "Cory LaViska",
|
||||
"license": "MIT",
|
||||
"main": "dist/index.cjs.js",
|
||||
"module": "dist/custom-elements-bundle/index.js",
|
||||
"es2015": "dist/esm/index.js",
|
||||
"es2017": "dist/esm/index.js",
|
||||
"jsnext:main": "dist/esm/index.js",
|
||||
"collection": "dist/collection/collection-manifest.json",
|
||||
"collection:main": "dist/collection/index.js",
|
||||
"types": "dist/custom-elements-bundle/index.d.ts",
|
||||
"main": "dist/shoelace.js",
|
||||
"module": "dist/shoelace.js",
|
||||
"type": "module",
|
||||
"types": "dist/shoelace.d.ts",
|
||||
"files": [
|
||||
"dist/",
|
||||
"loader/",
|
||||
"themes/"
|
||||
"dist"
|
||||
],
|
||||
"keywords": [
|
||||
"web components",
|
||||
"custom elements",
|
||||
"components"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/shoelace-style/shoelace.git"
|
||||
"url": "git+https://github.com/shoelace-style/shoelace.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/shoelace-style/shoelace/issues"
|
||||
@@ -30,62 +29,51 @@
|
||||
"url": "https://github.com/sponsors/claviska"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "stencil build --docs",
|
||||
"dev": "npm run make-icons && stencil build --dev --docs --watch --serve --port 4001 --no-open",
|
||||
"lint": "eslint src/**/*{.ts,.tsx}",
|
||||
"make-dist": "node make-dist.js",
|
||||
"make-icons": "node make-icons.js",
|
||||
"prettier": "prettier --write --loglevel warn .",
|
||||
"postbuild": "npm run make-dist",
|
||||
"prebuild": "npm run prettier && npm run lint && npm run make-icons",
|
||||
"serve": "node dev-server.js",
|
||||
"start": "concurrently --kill-others \"npm run dev\" \"npm run serve\"",
|
||||
"test.watch": "stencil test --spec --e2e --watchAll",
|
||||
"test": "stencil test --spec --e2e",
|
||||
"version": "npm run build"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@stencil/eslint-plugin": "^0.3.1",
|
||||
"@stencil/sass": "^1.3.2",
|
||||
"@types/color": "^3.0.1",
|
||||
"@types/jest": "25.2.3",
|
||||
"@types/puppeteer": "2.0.1",
|
||||
"@typescript-eslint/eslint-plugin": "^4.0.1",
|
||||
"@typescript-eslint/parser": "^4.0.1",
|
||||
"bluebird": "^3.7.2",
|
||||
"bootstrap-icons": "^1.3.0",
|
||||
"browser-sync": "^2.26.13",
|
||||
"chalk": "^4.0.0",
|
||||
"concurrently": "^5.1.0",
|
||||
"del": "^5.1.0",
|
||||
"download": "^8.0.0",
|
||||
"eslint": "^7.7.0",
|
||||
"eslint-plugin-react": "^7.20.6",
|
||||
"express": "^4.17.1",
|
||||
"front-matter": "^4.0.2",
|
||||
"glob": "^7.1.6",
|
||||
"http-proxy": "^1.18.1",
|
||||
"http-proxy-middleware": "^1.0.4",
|
||||
"husky": "^4.2.5",
|
||||
"jest": "26.0.1",
|
||||
"jest-cli": "26.0.1",
|
||||
"prettier": "^2.0.5",
|
||||
"puppeteer": "2.1.1",
|
||||
"recursive-copy": "^2.0.10",
|
||||
"through2": "^3.0.1",
|
||||
"typescript": "^4.0.2",
|
||||
"workbox-build": "4.3.1"
|
||||
"start": "node scripts/build.cjs --serve",
|
||||
"build": "node scripts/build.cjs",
|
||||
"prepublish": "npm run build",
|
||||
"prettier": "prettier --write --loglevel warn ."
|
||||
},
|
||||
"dependencies": {
|
||||
"@popperjs/core": "^2.5.3",
|
||||
"@shoelace-style/animations": "^1.0.0",
|
||||
"@stencil/core": "^2.4.0",
|
||||
"@types/resize-observer-browser": "^0.1.4",
|
||||
"color": "^3.1.2"
|
||||
"@popperjs/core": "^2.7.0",
|
||||
"@shoelace-style/animations": "^1.1.0",
|
||||
"@shoelace-style/shoemaker": "^1.0.0-beta.6",
|
||||
"color": "^3.1.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/color": "^3.0.1",
|
||||
"@types/resize-observer-browser": "^0.1.5",
|
||||
"bluebird": "^3.7.2",
|
||||
"bootstrap-icons": "^1.4.0",
|
||||
"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",
|
||||
"download": "^8.0.0",
|
||||
"esbuild": "^0.8.50",
|
||||
"esbuild-plugin-inline-import": "^1.0.0",
|
||||
"esbuild-plugin-sass": "^0.3.3",
|
||||
"front-matter": "^4.0.2",
|
||||
"get-port": "^5.1.1",
|
||||
"glob": "^7.1.6",
|
||||
"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"
|
||||
},
|
||||
"sideEffects": [
|
||||
"*.css"
|
||||
],
|
||||
"husky": {
|
||||
"hooks": {
|
||||
"pre-commit": "npm run prettier && npm run lint"
|
||||
"pre-commit": "npm run prettier"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user