shoelace/package.json

119 wiersze
3.7 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.",
2022-02-25 15:06:44 +00:00
"version": "2.0.0-beta.70",
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",
"web-types": "dist/web-types.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\"",
2022-02-11 13:00:09 +00:00
"verify": "npm run prettier:check && npm run lint && npm run build && npm run test",
"prepublishOnly": "npm run verify",
2021-04-07 21:03:24 +00:00
"prettier": "prettier --write --loglevel warn .",
"prettier:check": "prettier --check --loglevel warn .",
"lint": "eslint src --max-warnings 0",
2022-03-02 15:10:41 +00:00
"lint:fix": "eslint src --max-warnings 0 --fix",
"ts-check": "tsc --noEmit --project ./tsconfig.json",
"create": "plop --plopfile scripts/plop/plopfile.js",
2022-02-11 13:00:09 +00:00
"test": "web-test-runner",
2022-03-01 23:06:05 +00:00
"test:component": "npm run test -- --group",
"test:watch": "web-test-runner --watch",
"spellcheck": "cspell \"**/*.{js,ts,json,html,css,md}\" --no-progress",
"list-outdated-dependencies": "npm-check-updates --format repo --peer",
"update-dependencies": "npm-check-updates --peer -u && npm install && npm run lint:fix && npm run prettier && npm run verify"
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": {
2022-01-26 14:36:07 +00:00
"@lit-labs/react": "^1.0.2",
"@popperjs/core": "^2.11.2",
2021-02-26 14:09:13 +00:00
"@shoelace-style/animations": "^1.1.0",
2021-12-07 19:27:45 +00:00
"@shoelace-style/localize": "^2.1.3",
2022-01-26 14:36:07 +00:00
"color": "4.2",
2022-02-16 21:13:54 +00:00
"lit": "^2.1.4",
2021-04-22 19:42:23 +00:00
"qr-creator": "^1.0.0"
2020-07-15 21:30:37 +00:00
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.5.7",
2022-02-16 21:13:54 +00:00
"@open-wc/testing": "^3.0.4",
"@types/color": "^3.0.3",
2022-01-26 14:36:07 +00:00
"@types/mocha": "^9.1.0",
2022-02-16 21:13:54 +00:00
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"@web/dev-server-esbuild": "^0.2.16",
2022-02-16 21:13:54 +00:00
"@web/test-runner": "^0.13.27",
"@web/test-runner-playwright": "^0.8.8",
2022-02-10 14:02:48 +00:00
"bootstrap-icons": "^1.8.1",
"browser-sync": "^2.27.7",
"chalk": "^5.0.0",
2022-02-01 14:16:38 +00:00
"command-line-args": "^5.2.1",
"comment-parser": "^1.3.0",
2022-02-16 21:13:54 +00:00
"cspell": "^5.18.5",
2021-02-26 14:09:13 +00:00
"del": "^6.0.0",
2020-07-15 21:30:37 +00:00
"download": "^8.0.0",
2022-02-16 21:13:54 +00:00
"esbuild": "^0.14.21",
"eslint": "^8.9.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-lit": "^1.6.1",
"eslint-plugin-lit-a11y": "^2.2.0",
2022-03-02 15:10:41 +00:00
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-wc": "^1.3.2",
2020-07-15 21:30:37 +00:00
"front-matter": "^4.0.2",
2022-02-16 21:13:54 +00:00
"get-port": "^6.1.0",
"globby": "^13.1.1",
"husky": "^7.0.4",
"jsonata": "^1.8.6",
2022-02-16 21:13:54 +00:00
"lint-staged": "^12.3.4",
2021-09-07 15:52:58 +00:00
"lunr": "^2.3.9",
2022-02-16 21:13:54 +00:00
"npm-check-updates": "^12.3.0",
"open": "^8.4.0",
"pascal-case": "^3.1.2",
"plop": "^3.0.5",
2022-01-01 01:39:16 +00:00
"prettier": "^2.5.1",
2021-11-04 11:27:18 +00:00
"react": "^17.0.2",
2022-02-16 21:13:54 +00:00
"recursive-copy": "^2.0.14",
"sinon": "^13.0.1",
"strip-css-comments": "^5.0.0",
"tslib": "^2.3.1",
"ttypescript": "^1.5.13",
"typescript": "^4.5.5",
"typescript-transform-paths": "^3.3.1"
2022-03-02 15:10:41 +00:00
},
"lint-staged": {
"*.{ts,js}": [
"eslint --max-warnings 0 --cache --fix",
"prettier --write"
]
2020-07-15 21:30:37 +00:00
}
}