Files
shoelace/package.json

90 lines
2.6 KiB
JSON
Raw Normal View History

2020-07-15 17:30:37 -04:00
{
"name": "@shoelace-style/shoelace",
"description": "A forward-thinking library of web components.",
2021-12-07 17:02:33 -05:00
"version": "2.0.0-beta.62",
2021-02-26 09:09:13 -05:00
"homepage": "https://github.com/shoelace-style/shoelace",
2020-12-29 14:57:45 -05:00
"author": "Cory LaViska",
"license": "MIT",
2021-02-26 09:09:13 -05:00
"main": "dist/shoelace.js",
"module": "dist/shoelace.js",
2021-10-14 08:39:17 -04:00
"customElements": "dist/custom-elements.json",
2021-02-26 09:09:13 -05:00
"type": "module",
"types": "dist/shoelace.d.ts",
2020-07-15 17:30:37 -04:00
"files": [
2021-02-26 09:09:13 -05:00
"dist"
],
"keywords": [
"web components",
"custom elements",
"components"
2020-07-15 17:30:37 -04:00
],
"repository": {
"type": "git",
2021-02-26 09:09:13 -05:00
"url": "git+https://github.com/shoelace-style/shoelace.git"
2020-07-15 17:30:37 -04:00
},
2020-12-29 14:57:45 -05:00
"bugs": {
"url": "https://github.com/shoelace-style/shoelace/issues"
},
2020-07-15 17:30:37 -04:00
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/claviska"
},
"scripts": {
2021-10-14 08:39:17 -04:00
"start": "node scripts/build.js --bundle --serve",
2021-10-22 10:51:17 -04:00
"build": "node scripts/build.js --bundle --types --copydir \"docs/dist\"",
"prepublishOnly": "npm run build && npm run test",
2021-04-07 17:03:24 -04:00
"prettier": "prettier --write --loglevel warn .",
2021-06-18 10:07:17 -04:00
"create": "plop --plopfile scripts/plop/plopfile.cjs",
"test": "web-test-runner \"src/**/*.test.ts\" --node-resolve --playwright --browsers chromium firefox webkit",
"test:watch": "web-test-runner \"src/**/*.test.ts\" --node-resolve --playwright --browsers chromium firefox webkit --watch"
2021-02-26 09:09:13 -05:00
},
"dependencies": {
2021-11-04 07:27:18 -04:00
"@lit-labs/react": "^1.0.1",
2021-02-26 09:09:13 -05:00
"@popperjs/core": "^2.7.0",
"@shoelace-style/animations": "^1.1.0",
2021-12-07 14:27:45 -05:00
"@shoelace-style/localize": "^2.1.3",
2021-12-07 16:59:16 -05:00
"color": "4.1",
2021-11-12 09:55:53 -05:00
"lit": "^2.0.2",
2021-04-22 15:42:23 -04:00
"qr-creator": "^1.0.0"
2020-07-15 17:30:37 -04:00
},
"devDependencies": {
2021-07-12 09:37:55 -04:00
"@custom-elements-manifest/analyzer": "^0.4.12",
"@open-wc/testing": "^2.5.33",
2020-12-16 08:21:01 -05:00
"@types/color": "^3.0.1",
2021-11-04 07:27:18 -04: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 17:30:37 -04:00
"bluebird": "^3.7.2",
2021-12-07 16:59:16 -05:00
"bootstrap-icons": "^1.7.2",
2021-02-26 09:09:13 -05:00
"browser-sync": "^2.26.14",
"chalk": "^4.1.0",
2021-10-08 10:10:26 -04:00
"command-line-args": "^5.2.0",
"comment-parser": "^1.1.5",
2021-02-26 09:09:13 -05:00
"concurrently": "^5.3.0",
"del": "^6.0.0",
2020-07-15 17:30:37 -04:00
"download": "^8.0.0",
2021-05-27 17:00:43 -04:00
"esbuild": "^0.12.4",
2020-07-15 17:30:37 -04:00
"front-matter": "^4.0.2",
2021-02-26 09:09:13 -05:00
"get-port": "^5.1.1",
2021-08-24 08:57:02 -04:00
"globby": "^11.0.4",
2021-02-26 09:09:13 -05:00
"husky": "^4.3.8",
2021-09-07 11:52:58 -04:00
"lunr": "^2.3.9",
"mkdirp": "^0.5.5",
2021-06-18 10:07:17 -04:00
"plop": "^2.7.4",
2021-02-26 09:09:13 -05:00
"prettier": "^2.2.1",
2021-11-04 07:27:18 -04:00
"react": "^17.0.2",
2021-02-26 09:09:13 -05:00
"recursive-copy": "^2.0.11",
"sinon": "^11.1.1",
"strip-css-comments": "^4.1.0",
2021-05-12 07:30:26 -04:00
"tslib": "^2.2.0",
"typescript": "^4.2.4",
2021-02-26 09:09:13 -05:00
"wait-on": "^5.2.1"
2020-07-15 17:30:37 -04:00
},
"husky": {
"hooks": {
2021-02-26 09:09:13 -05:00
"pre-commit": "npm run prettier"
2020-07-15 17:30:37 -04:00
}
}
}