mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
88 lines
2.3 KiB
JSON
88 lines
2.3 KiB
JSON
{
|
|
"name": "carbon-components-svelte",
|
|
"version": "0.51.0",
|
|
"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": "run-p test:*",
|
|
"test:types": "svelte-check --workspace tests",
|
|
"test:preprocess": "node tests/preprocess",
|
|
"build:css": "node scripts/build-css",
|
|
"build:api": "node scripts/build-api",
|
|
"build:lib": "rollup -c",
|
|
"prepack": "run-p build:*",
|
|
"format": "prettier --write './**/*.{svelte,js,md}'"
|
|
},
|
|
"dependencies": {
|
|
"flatpickr": "4.6.9"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^17.1.0",
|
|
"@rollup/plugin-node-resolve": "^11.1.1",
|
|
"@tsconfig/svelte": "^1.0.10",
|
|
"autoprefixer": "^10.2.4",
|
|
"carbon-components": "10.48.0",
|
|
"carbon-components-10.47": "npm:carbon-components@10.47",
|
|
"carbon-icons-svelte": "^10.38.0",
|
|
"husky": "^4.3.8",
|
|
"lint-staged": "^10.5.3",
|
|
"npm-run-all": "^4.1.5",
|
|
"postcss": "^8.2.4",
|
|
"prettier": "^2.2.1",
|
|
"prettier-plugin-svelte": "^2.1.5",
|
|
"rollup": "^2.38.4",
|
|
"rollup-plugin-svelte": "^7.1.0",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"sass": "^1.42.1",
|
|
"sveld": "^0.10.2",
|
|
"svelte": "^3.40.1",
|
|
"svelte-check": "^1.1.32",
|
|
"typescript": "^4.1.3"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{svelte,md,js,json}": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"svelteStrictMode": true,
|
|
"svelteBracketNewLine": 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",
|
|
"preprocess",
|
|
"actions"
|
|
],
|
|
"contributors": [
|
|
"Eric Liu (https://github.com/metonym)",
|
|
"Josef Aidt (https://github.com/josefaidt)"
|
|
]
|
|
}
|