shoelace/package.json

97 wiersze
2.9 KiB
JSON
Czysty Zwykły widok Historia

2020-07-15 21:30:37 +00:00
{
"name": "@shoelace-style/shoelace",
"description": "A forward-thinking library of web components.",
2021-12-23 17:02:03 +00:00
"version": "2.0.0-beta.63",
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",
2021-10-14 12:39:17 +00:00
"customElements": "dist/custom-elements.json",
2021-02-26 14:09:13 +00:00
"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-10-14 12:39:17 +00:00
"start": "node scripts/build.js --bundle --serve",
2021-10-22 14:51:17 +00:00
"build": "node scripts/build.js --bundle --types --copydir \"docs/dist\"",
"prepublishOnly": "npm run build && npm run test",
2021-04-07 21:03:24 +00:00
"prettier": "prettier --write --loglevel warn .",
2021-06-18 14:07:17 +00:00
"create": "plop --plopfile scripts/plop/plopfile.cjs",
"test": "web-test-runner \"src/**/*.test.ts\" --node-resolve --playwright --browsers chromium firefox webkit",
2022-01-01 01:39:16 +00:00
"test:watch": "web-test-runner \"src/**/*.test.ts\" --node-resolve --playwright --browsers chromium firefox webkit --watch",
"spellcheck": "cspell \"**/*.{js,ts,jsx,tsx,json,html,xml,css,scss,sass,md}\""
2021-02-26 14:09:13 +00:00
},
"dependencies": {
2021-11-04 11:27:18 +00:00
"@lit-labs/react": "^1.0.1",
2021-02-26 14:09:13 +00:00
"@popperjs/core": "^2.7.0",
"@shoelace-style/animations": "^1.1.0",
2021-12-07 19:27:45 +00:00
"@shoelace-style/localize": "^2.1.3",
2021-12-07 21:59:16 +00:00
"color": "4.1",
2021-11-12 14:55:53 +00:00
"lit": "^2.0.2",
2021-04-22 19:42:23 +00:00
"qr-creator": "^1.0.0"
2020-07-15 21:30:37 +00:00
},
"devDependencies": {
2021-07-12 13:37:55 +00:00
"@custom-elements-manifest/analyzer": "^0.4.12",
"@open-wc/testing": "^2.5.33",
2020-12-16 13:21:01 +00:00
"@types/color": "^3.0.1",
2021-11-04 11:27:18 +00:00
"@types/react": "^17.0.33",
"@web/dev-server-esbuild": "^0.2.12",
"@web/test-runner": "^0.13.5",
"@web/test-runner-playwright": "^0.8.8",
2020-07-15 21:30:37 +00:00
"bluebird": "^3.7.2",
2021-12-07 21:59:16 +00:00
"bootstrap-icons": "^1.7.2",
2021-02-26 14:09:13 +00:00
"browser-sync": "^2.26.14",
"chalk": "^4.1.0",
2021-10-08 14:10:26 +00:00
"command-line-args": "^5.2.0",
"comment-parser": "^1.1.5",
2021-02-26 14:09:13 +00:00
"concurrently": "^5.3.0",
2022-01-01 01:39:16 +00:00
"cspell": "^5.14.0",
2021-02-26 14:09:13 +00:00
"del": "^6.0.0",
2020-07-15 21:30:37 +00:00
"download": "^8.0.0",
2021-05-27 21:00:43 +00:00
"esbuild": "^0.12.4",
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",
2021-08-24 12:57:02 +00:00
"globby": "^11.0.4",
2021-02-26 14:09:13 +00:00
"husky": "^4.3.8",
2022-01-01 01:39:16 +00:00
"lint-staged": "^12.1.4",
2021-09-07 15:52:58 +00:00
"lunr": "^2.3.9",
"mkdirp": "^0.5.5",
2021-06-18 14:07:17 +00:00
"plop": "^2.7.4",
2022-01-01 01:39:16 +00:00
"prettier": "^2.5.1",
2021-11-04 11:27:18 +00:00
"react": "^17.0.2",
2021-02-26 14:09:13 +00:00
"recursive-copy": "^2.0.11",
"sinon": "^11.1.1",
"strip-css-comments": "^4.1.0",
2021-05-12 11:30:26 +00:00
"tslib": "^2.2.0",
"typescript": "^4.2.4",
2021-02-26 14:09:13 +00:00
"wait-on": "^5.2.1"
2020-07-15 21:30:37 +00:00
},
"husky": {
"hooks": {
2022-01-01 01:39:16 +00:00
"pre-commit": "lint-staged"
2020-07-15 21:30:37 +00:00
}
2022-01-01 01:39:16 +00:00
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,html,xml,css,scss,sass,md}": "cspell --no-must-find-files",
"*": "prettier --write --ignore-unknown"
2020-07-15 21:30:37 +00:00
}
}