carbon-components-svelte/package.json
Eric Liu 0d78c30b9d
fix(types): include @default annotations for props that are undefined by default (#1020)
* chore(deps-dev): upgrade sveld to v0.12.1

* Run "yarn build:lib"

* Re-run "yarn build:lib"
2022-01-20 19:29:06 -08:00

87 lines
2.2 KiB
JSON

{
"name": "carbon-components-svelte",
"version": "0.54.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.5.1",
"prettier-plugin-svelte": "^2.5.1",
"rollup": "^2.38.4",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.42.1",
"sveld": "^0.12.1",
"svelte": "^3.45.0",
"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
},
"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)"
]
}