@neu-ui/web-components
Version:
A Neumorphic web component library built with @microsoft/fast-element and Vite using javascript
106 lines (105 loc) • 2.94 kB
JSON
{
"name": "@neu-ui/web-components",
"description": "A Neumorphic web component library built with @microsoft/fast-element and Vite using javascript",
"license": "MIT",
"author": "Ashik Moosa",
"private": false,
"version": "0.1.10",
"files": [
"dist/",
"package.json",
"README.md",
"LICENSE",
"custom-elements.json",
"index.js"
],
"type": "module",
"main": "dist/index.es.js",
"module": "dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js"
},
"./components/button": {
"import": "./dist/components/button/button.es.js"
},
"./components/label": {
"import": "./dist/components/label/label.es.js"
},
"./components/input": {
"import": "./dist/components/input/input.es.js"
},
"./styles": {
"import": "./dist/styles/styles.es.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/AshikMoosa/Neu-UI"
},
"keywords": [
"neumorphism",
"soft-ui",
"web-components",
"fast-element",
"ui-library",
"custom-elements",
"modern-design",
"3d-ui",
"shadow-effects",
"interactive-ui"
],
"scripts": {
"analyze": "cem analyze --fast",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prepare": "husky",
"storybook": "npm run analyze -- --exclude dist && storybook dev -p 6006",
"build-storybook": "npm run analyze -- --exclude dist && storybook build",
"test": "mocha 'test/**/*.js' 'src/**/*.spec.js' 'test/**/*.cjs' 'src/**/*.spec.cjs'",
"test:watch": "mocha --watch 'test/**/*.js' 'src/**/*.spec.js'",
"test:dev": "vite --config vite.config.test.js"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.9.0",
"@eslint/js": "^9.11.1",
"@storybook/addon-essentials": "^8.3.5",
"@storybook/addon-interactions": "^8.3.5",
"@storybook/addon-links": "^8.3.5",
"@storybook/blocks": "^8.3.5",
"@storybook/html": "^8.3.5",
"@storybook/html-vite": "^8.3.5",
"@storybook/test": "^8.3.5",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-storybook": "^0.9.0",
"globals": "^15.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"prettier": "3.3.3",
"storybook": "^8.3.5",
"vite": "^5.4.1"
},
"dependencies": {
"@custom-elements-manifest/analyzer": "^0.10.3",
"@fortawesome/fontawesome-free": "^6.6.0",
"@microsoft/fast-element": "^2.0.0",
"chai": "^5.1.1",
"jsdom": "^25.0.1",
"rollup": "^4.24.0"
},
"customElements": "custom-elements.json",
"lint-staged": {
"**/*.{js,ts}": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}