shoelace/package.json

150 wiersze
4.8 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.",
2024-03-25 18:04:59 +00:00
"version": "2.15.0",
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-10-14 12:39:17 +00:00
"customElements": "dist/custom-elements.json",
2023-09-08 03:04:31 +00:00
"web-types": "./dist/web-types.json",
2021-02-26 14:09:13 +00:00
"type": "module",
"types": "dist/shoelace.d.ts",
"jsdelivr": "./cdn/shoelace-autoloader.js",
"exports": {
".": {
"types": "./dist/shoelace.d.ts",
"import": "./dist/shoelace.js"
},
2023-03-03 15:36:30 +00:00
"./dist/custom-elements.json": "./dist/custom-elements.json",
"./dist/shoelace.js": "./dist/shoelace.js",
"./dist/shoelace-autoloader.js": "./dist/shoelace-autoloader.js",
2022-11-22 18:01:15 +00:00
"./dist/themes/*": "./dist/themes/*",
"./dist/components/*": "./dist/components/*",
"./dist/utilities/*": "./dist/utilities/*",
"./dist/react": "./dist/react/index.js",
2022-11-22 18:01:15 +00:00
"./dist/react/*": "./dist/react/*",
"./dist/translations/*": "./dist/translations/*"
},
2023-10-25 15:27:57 +00:00
"files": [
"dist",
"cdn"
],
"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": {
2023-06-12 14:54:33 +00:00
"start": "node scripts/build.js --serve",
"build": "node scripts/build.js",
2022-02-11 13:00:09 +00:00
"verify": "npm run prettier:check && npm run lint && npm run build && npm run test",
"prepare": "npx playwright install",
"prepublishOnly": "npm run verify",
"prettier": "prettier --write --log-level=warn .",
"prettier:check": "prettier --check --log-level=warn .",
"lint": "eslint src --max-warnings 0",
2022-03-02 15:10:41 +00:00
"lint:fix": "eslint src --max-warnings 0 --fix",
"create": "plop --plopfile scripts/plop/plopfile.js",
2023-01-04 14:58:56 +00:00
"test": "web-test-runner --group default",
"test:component": "web-test-runner -- --watch --group",
"test:watch": "web-test-runner --watch --group default",
"spellcheck": "cspell \"**/*.{js,ts,json,html,css,md}\" --no-progress",
"list-outdated-dependencies": "npm-check-updates --format repo --peer",
2023-01-13 19:35:28 +00:00
"update-dependencies": "npm-check-updates --peer -u && npm install"
2021-02-26 14:09:13 +00:00
},
2022-01-06 13:50:45 +00:00
"engines": {
2022-01-18 14:23:48 +00:00
"node": ">=14.17.0"
2022-01-06 13:50:45 +00:00
},
2021-02-26 14:09:13 +00:00
"dependencies": {
2023-10-12 16:34:13 +00:00
"@ctrl/tinycolor": "^4.0.2",
"@floating-ui/dom": "^1.5.3",
"@lit/react": "^1.0.0",
2021-02-26 14:09:13 +00:00
"@shoelace-style/animations": "^1.1.0",
2023-09-27 17:03:35 +00:00
"@shoelace-style/localize": "^3.1.2",
"composed-offset-position": "^0.0.4",
2023-10-12 17:29:15 +00:00
"lit": "^3.0.0",
2021-04-22 19:42:23 +00:00
"qr-creator": "^1.0.0"
2020-07-15 21:30:37 +00:00
},
"devDependencies": {
2023-06-06 12:22:18 +00:00
"@11ty/eleventy": "^2.0.1",
2023-10-12 16:34:13 +00:00
"@custom-elements-manifest/analyzer": "^0.8.4",
"@open-wc/testing": "^3.2.0",
"@types/mocha": "^10.0.2",
"@types/react": "^18.2.28",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@web/dev-server-esbuild": "^0.3.6",
2023-11-17 18:38:58 +00:00
"@web/test-runner": "^0.18.0",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
2023-10-12 16:34:13 +00:00
"bootstrap-icons": "^1.11.1",
"browser-sync": "^2.29.3",
2023-10-12 16:34:13 +00:00
"chalk": "^5.3.0",
2023-06-06 12:22:18 +00:00
"change-case": "^4.1.2",
2022-02-01 14:16:38 +00:00
"command-line-args": "^5.2.1",
2023-10-12 16:34:13 +00:00
"comment-parser": "^1.4.0",
2023-01-13 19:35:28 +00:00
"cspell": "^6.18.1",
"custom-element-jet-brains-integration": "^1.4.0",
2023-10-12 16:34:13 +00:00
"custom-element-vs-code-integration": "^1.2.1",
"custom-element-vuejs-integration": "^1.0.0",
2023-10-12 16:34:13 +00:00
"del": "^7.1.0",
2020-07-15 21:30:37 +00:00
"download": "^8.0.0",
2023-10-12 16:47:22 +00:00
"esbuild": "^0.19.4",
"esbuild-plugin-replace": "^1.4.0",
2023-10-12 16:34:13 +00:00
"eslint": "^8.51.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
2023-10-12 16:34:13 +00:00
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-lit": "^1.9.1",
"eslint-plugin-lit-a11y": "^4.1.0",
2023-10-12 16:34:13 +00:00
"eslint-plugin-markdown": "^3.0.1",
2023-01-13 20:43:55 +00:00
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
2023-10-12 17:29:15 +00:00
"eslint-plugin-wc": "^2.0.4",
2020-07-15 21:30:37 +00:00
"front-matter": "^4.0.2",
"get-port": "^7.0.0",
2023-10-12 16:34:13 +00:00
"globby": "^13.2.2",
2023-01-13 19:35:28 +00:00
"husky": "^8.0.3",
2023-06-06 12:22:18 +00:00
"jsdom": "^22.1.0",
2023-10-12 16:34:13 +00:00
"jsonata": "^2.0.3",
2023-10-12 17:29:15 +00:00
"lint-staged": "^14.0.1",
2021-09-07 15:52:58 +00:00
"lunr": "^2.3.9",
2023-06-06 12:22:18 +00:00
"markdown-it-container": "^3.0.0",
"markdown-it-ins": "^3.0.1",
"markdown-it-kbd": "^2.2.2",
"markdown-it-mark": "^3.0.1",
"markdown-it-replace-it": "^1.0.0",
2023-10-12 16:34:13 +00:00
"npm-check-updates": "^16.14.6",
2023-10-12 18:24:39 +00:00
"ora": "^7.0.1",
"pascal-case": "^3.1.2",
2023-10-12 18:24:39 +00:00
"plop": "^4.0.0",
2023-10-12 17:56:11 +00:00
"prettier": "^3.0.3",
2023-06-06 12:22:18 +00:00
"prismjs": "^1.29.0",
2022-07-14 13:11:16 +00:00
"react": "^18.2.0",
2022-02-16 21:13:54 +00:00
"recursive-copy": "^2.0.14",
2023-10-12 18:24:39 +00:00
"sinon": "^16.1.0",
2023-06-06 12:22:18 +00:00
"smartquotes": "^2.3.2",
2023-01-09 18:06:34 +00:00
"source-map": "^0.7.4",
"strip-css-comments": "^5.0.0",
2023-10-12 16:47:22 +00:00
"tslib": "^2.6.2",
"typescript": "^5.2.2",
2023-10-12 16:34:13 +00:00
"user-agent-data-types": "^0.3.1"
2022-03-02 15:10:41 +00:00
},
"lint-staged": {
2023-10-25 15:27:57 +00:00
"*.{ts,js}": [
"eslint --max-warnings 0 --cache --fix",
"prettier --write"
]
2020-07-15 21:30:37 +00:00
}
}