mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
78 lines
2.1 KiB
JSON
78 lines
2.1 KiB
JSON
{
|
|
"name": "carbon-components-svelte",
|
|
"version": "0.63.2",
|
|
"license": "Apache-2.0",
|
|
"description": "Svelte implementation of the Carbon Design System",
|
|
"svelte": "./src/index.js",
|
|
"main": "./lib/index.js",
|
|
"module": "./lib/index.mjs",
|
|
"types": "./types/index.d.ts",
|
|
"sideEffects": [
|
|
"css/*.css"
|
|
],
|
|
"scripts": {
|
|
"test:types": "svelte-check --workspace tests",
|
|
"build:css": "node scripts/build-css",
|
|
"build:docs": "node scripts/build-docs",
|
|
"build:lib": "rollup -c",
|
|
"prepack": "yarn build:docs & yarn build:lib",
|
|
"format": "prettier --write \"./**/*.{svelte,js,md}\"",
|
|
"prepare": "husky install"
|
|
},
|
|
"dependencies": {
|
|
"flatpickr": "4.6.9"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^21.0.3",
|
|
"@rollup/plugin-node-resolve": "^13.1.3",
|
|
"@tsconfig/svelte": "^3.0.0",
|
|
"autoprefixer": "^10.4.4",
|
|
"carbon-components": "10.56.0",
|
|
"carbon-icons-svelte": "^11.0.1",
|
|
"husky": "^7.0.4",
|
|
"lint-staged": "^12.3.7",
|
|
"postcss": "^8.4.12",
|
|
"prettier": "^2.6.2",
|
|
"prettier-plugin-svelte": "^2.6.0",
|
|
"rollup": "^2.70.1",
|
|
"rollup-plugin-svelte": "^7.1.0",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"sass": "^1.49.11",
|
|
"sveld": "^0.15.0",
|
|
"svelte": "^3.46.6",
|
|
"svelte-check": "^2.4.6",
|
|
"typescript": "^4.6.3"
|
|
},
|
|
"lint-staged": {
|
|
"*.{svelte,md,js,json}": [
|
|
"prettier --write"
|
|
],
|
|
"*.{svelte,js,md}": "prettier --write"
|
|
},
|
|
"prettier": {
|
|
"svelteStrictMode": true
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/carbon-design-system/carbon-components-svelte.git"
|
|
},
|
|
"homepage": "https://github.com/carbon-design-system/carbon-components-svelte",
|
|
"bugs": "https://github.com/carbon-design-system/carbon-components-svelte/issues",
|
|
"keywords": [
|
|
"carbon",
|
|
"carbon components",
|
|
"svelte",
|
|
"component library",
|
|
"carbon design system"
|
|
],
|
|
"files": [
|
|
"lib",
|
|
"src",
|
|
"types",
|
|
"css"
|
|
],
|
|
"contributors": [
|
|
"Eric Liu (https://github.com/metonym)",
|
|
"Josef Aidt (https://github.com/josefaidt)"
|
|
]
|
|
}
|