shoelace/package.json

81 wiersze
2.4 KiB
JSON
Czysty Zwykły widok Historia

2020-07-15 21:30:37 +00:00
{
"name": "@shoelace-style/shoelace",
2020-12-23 22:05:30 +00:00
"version": "2.0.0-beta.25",
2020-07-15 21:30:37 +00:00
"description": "A forward-thinking library of web components.",
2020-09-02 20:58:26 +00:00
"main": "dist/index.cjs.js",
"module": "dist/custom-elements/index.js",
"es2015": "dist/esm/index.js",
"es2017": "dist/esm/index.js",
"jsnext:main": "dist/esm/index.js",
2020-07-15 21:30:37 +00:00
"collection": "dist/collection/collection-manifest.json",
2020-08-20 16:03:13 +00:00
"collection:main": "dist/collection/index.js",
"types": "dist/custom-elements/index.d.ts",
2020-07-15 21:30:37 +00:00
"files": [
"dist/",
2020-08-18 13:45:34 +00:00
"loader/",
"themes/"
2020-07-15 21:30:37 +00:00
],
"repository": {
"type": "git",
"url": "git://github.com/shoelace-style/shoelace.git"
},
"funding": {
"type": "individual",
"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",
2020-07-15 21:30:37 +00:00
"lint": "eslint src/**/*{.ts,.tsx}",
"make-dist": "node make-dist.js",
"make-icons": "node make-icons.js",
2020-07-29 12:09:21 +00:00
"prettier": "prettier --write --loglevel warn .",
2020-07-15 21:30:37 +00:00
"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",
2020-07-23 12:36:06 +00:00
"@stencil/sass": "^1.3.2",
2020-12-16 13:21:01 +00:00
"@types/color": "^3.0.1",
2020-08-31 20:45:43 +00:00
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
2020-07-15 21:30:37 +00:00
"bluebird": "^3.7.2",
2020-12-23 20:48:09 +00:00
"bootstrap-icons": "^1.2.2",
2020-10-27 12:29:46 +00:00
"browser-sync": "^2.26.13",
2020-07-15 21:30:37 +00:00
"chalk": "^4.0.0",
"concurrently": "^5.1.0",
"del": "^5.1.0",
"download": "^8.0.0",
2020-08-31 20:45:43 +00:00
"eslint": "^7.7.0",
"eslint-plugin-react": "^7.20.6",
2020-07-15 21:30:37 +00:00
"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",
2020-10-15 13:18:42 +00:00
"prettier": "^2.0.5",
2020-07-15 21:30:37 +00:00
"recursive-copy": "^2.0.10",
"through2": "^3.0.1",
2020-08-31 20:45:43 +00:00
"typescript": "^4.0.2",
2020-07-15 21:30:37 +00:00
"workbox-build": "4.3.1"
},
"license": "MIT",
"dependencies": {
2020-10-12 12:48:50 +00:00
"@popperjs/core": "^2.5.3",
2020-11-06 21:31:36 +00:00
"@stencil/core": "^2.3.0",
"@types/resize-observer-browser": "^0.1.4",
2020-12-07 22:29:55 +00:00
"color": "^3.1.2"
2020-07-15 21:30:37 +00:00
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier && npm run lint"
}
}
}