Files
CommonWebComponents/package.json
Marc Lorenz 6407ea531e
All checks were successful
CI / test-and-build (push) Successful in 9m32s
Component import from other project
2026-03-24 09:50:34 +01:00

42 lines
868 B
JSON

{
"name": "limelight-common-web-components",
"version": "0.1.0",
"type": "module",
"files": [
"dist",
"font.css",
"theme.css",
"fonts"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./style.css": "./dist/index.css",
"./theme.css": "./theme.css"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"@vitejs/plugin-vue": "^5.0.0",
"@vue/test-utils": "^2.4.6",
"jsdom": "^27.0.1",
"tailwindcss": "^4.0.0",
"typescript": "^5.0.0",
"vite": "^6.0.0",
"vitest": "^3.2.4",
"vue": "^3.5.0"
},
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"test": "vitest run",
"test:watch": "vitest"
}
}