mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 11:36:36 +00:00
See upgrade guide here: https://carbondesignsystem.com/migrating/guide/develop As proposed in https://github.com/carbon-design-system/carbon-components-svelte/pull/1881 we can now start adopting v11 styles and merge incremental changes and fixes onto `next/v11-styles` branch. I would propose to merge small steps onto this new branch and discuss separte topics individually. This allows many contributors to propose small changes. The v11 style adoption should be held as minimal as possible since many components already have some notable changes in Carbon v11.
94 lines
2.5 KiB
JSON
94 lines
2.5 KiB
JSON
{
|
|
"name": "carbon-components-svelte",
|
|
"version": "0.82.7",
|
|
"license": "Apache-2.0",
|
|
"description": "Svelte implementation of the Carbon Design System",
|
|
"svelte": "./src/index.js",
|
|
"exports": {
|
|
".": {
|
|
"types": "./types/index.d.ts",
|
|
"svelte": "./src/index.js"
|
|
},
|
|
"./css/*": "./css/*",
|
|
"./src/*.svelte": {
|
|
"types": "./types/*.svelte.d.ts",
|
|
"import": "./src/*.svelte"
|
|
},
|
|
"./src/*": {
|
|
"types": "./types/*.d.ts",
|
|
"import": "./src/*.js"
|
|
}
|
|
},
|
|
"main": "./lib/index.js",
|
|
"module": "./lib/index.mjs",
|
|
"types": "./types/index.d.ts",
|
|
"sideEffects": [
|
|
"css/*.css"
|
|
],
|
|
"scripts": {
|
|
"test:types": "svelte-check --workspace tests --no-tsconfig --ignore 'docs,examples'",
|
|
"lint": "prettier --write \"**/*.{svelte,md,js,json,ts}\"",
|
|
"build:css": "node scripts/build-css",
|
|
"build:docs": "node scripts/build-docs",
|
|
"build:lib": "rollup -c",
|
|
"format": "prettier --write \"./**/*.{svelte,js,md}\"",
|
|
"release": "standard-version && yarn build:docs"
|
|
},
|
|
"dependencies": {
|
|
"flatpickr": "4.6.9"
|
|
},
|
|
"devDependencies": {
|
|
"@carbon/styles": "^1.47.0",
|
|
"@rollup/plugin-commonjs": "^21.0.3",
|
|
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
"@tsconfig/svelte": "^4.0.1",
|
|
"autoprefixer": "^10.4.8",
|
|
"carbon-components": "10.58.12",
|
|
"carbon-icons-svelte": "^12.1.0",
|
|
"postcss": "^8.4.16",
|
|
"prettier": "^2.7.1",
|
|
"prettier-plugin-svelte": "^2.7.0",
|
|
"rollup": "^2.78.1",
|
|
"rollup-plugin-svelte": "^7.1.0",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"sass": "^1.49.11",
|
|
"standard-version": "^9.5.0",
|
|
"sveld": "^0.19.0",
|
|
"svelte": "^4.2.0",
|
|
"svelte-check": "^3.4.6",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"standard-version": {
|
|
"skip": {
|
|
"commit": true,
|
|
"tag": true
|
|
}
|
|
},
|
|
"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": [
|
|
"Josef Aidt (https://github.com/josefaidt)",
|
|
"Eric Liu (https://github.com/metonym)",
|
|
"Enrico Sacchetti (https://github.com/theetrain)"
|
|
]
|
|
}
|