2025-07-17 11:33:48 +02:00
|
|
|
{
|
2025-07-17 15:17:29 +02:00
|
|
|
"name": "@cellule-financiere-pmo/visua-vue",
|
2025-07-31 13:35:07 +02:00
|
|
|
"version": "1.0.21",
|
2025-07-17 11:33:48 +02:00
|
|
|
"type": "module",
|
2025-07-30 18:48:57 +02:00
|
|
|
"description": "Vue.js components of the Visua Design System.",
|
2025-07-31 02:00:04 +02:00
|
|
|
"main": "./dist/visua-vue.umd.cjs",
|
|
|
|
"module": "./dist/visua-vue.es.js",
|
|
|
|
"types": "./dist/index.d.ts",
|
2025-07-30 16:29:18 +02:00
|
|
|
"exports": {
|
|
|
|
".": {
|
2025-07-30 18:48:57 +02:00
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"require": "./dist/visua-vue.umd.cjs",
|
|
|
|
"import": "./dist/visua-vue.es.js"
|
2025-07-30 16:29:18 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"sideEffects": false,
|
2025-07-30 01:46:28 +02:00
|
|
|
"files": [
|
2025-07-30 16:29:18 +02:00
|
|
|
"dist",
|
2025-07-30 18:48:57 +02:00
|
|
|
"README.md"
|
2025-07-30 01:46:28 +02:00
|
|
|
],
|
2025-07-17 11:33:48 +02:00
|
|
|
"scripts": {
|
2025-07-31 02:00:04 +02:00
|
|
|
"clean": "rimraf dist",
|
|
|
|
"build": "npm-run-all clean build:assets build:types",
|
|
|
|
"build:assets": "vite build",
|
2025-07-31 02:29:27 +02:00
|
|
|
"build:types": "vue-tsc --emitDeclarationOnly --outDir dist && tsc --project tsconfig.types.json",
|
2025-07-31 02:00:04 +02:00
|
|
|
"prepare": "npm run build",
|
2025-07-17 11:33:48 +02:00
|
|
|
"dev": "vite",
|
|
|
|
"type-check": "vue-tsc --build",
|
2025-07-17 15:56:55 +02:00
|
|
|
"lint": "eslint . --fix",
|
2025-07-30 01:46:28 +02:00
|
|
|
"test": "vitest --config vitest.config.ts",
|
|
|
|
"test:unit": "vitest run --coverage",
|
|
|
|
"preview": "vite preview"
|
2025-07-17 11:33:48 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2025-07-20 00:41:51 +02:00
|
|
|
"@cellule-financiere-pmo/visua": "1.1.3",
|
2025-07-17 15:05:05 +02:00
|
|
|
"primevue": "^4.3.6",
|
2025-07-21 10:40:51 +02:00
|
|
|
"vue": "^3.5.17",
|
|
|
|
"vue-router": "^4.5.1"
|
2025-07-17 11:33:48 +02:00
|
|
|
},
|
2025-07-30 01:46:28 +02:00
|
|
|
"peerDependencies": {
|
|
|
|
"vue": "^3.5.17"
|
|
|
|
},
|
2025-07-17 11:33:48 +02:00
|
|
|
"devDependencies": {
|
|
|
|
"@tsconfig/node22": "^22.0.2",
|
|
|
|
"@types/node": "^22.15.32",
|
|
|
|
"@vitejs/plugin-vue": "^6.0.0",
|
2025-07-19 02:48:49 +02:00
|
|
|
"@vitest/coverage-v8": "^3.2.4",
|
2025-07-17 11:33:48 +02:00
|
|
|
"@vue/eslint-config-typescript": "^14.5.1",
|
2025-07-17 14:51:23 +02:00
|
|
|
"@vue/test-utils": "^2.4.6",
|
2025-07-17 11:33:48 +02:00
|
|
|
"@vue/tsconfig": "^0.7.0",
|
|
|
|
"eslint": "^9.29.0",
|
|
|
|
"eslint-plugin-vue": "~10.2.0",
|
|
|
|
"jiti": "^2.4.2",
|
|
|
|
"npm-run-all2": "^8.0.4",
|
2025-07-31 02:00:04 +02:00
|
|
|
"rimraf": "^5.0.10",
|
2025-07-17 11:33:48 +02:00
|
|
|
"typescript": "~5.8.0",
|
|
|
|
"vite": "^7.0.0",
|
2025-07-30 01:46:28 +02:00
|
|
|
"vite-plugin-inspect": "^11.3.0",
|
2025-07-17 11:33:48 +02:00
|
|
|
"vite-plugin-vue-devtools": "^7.7.7",
|
2025-07-19 02:48:49 +02:00
|
|
|
"vitest": "^3.2.4",
|
2025-07-17 11:33:48 +02:00
|
|
|
"vue-tsc": "^2.2.10"
|
2025-07-17 14:51:23 +02:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2025-07-30 18:48:57 +02:00
|
|
|
"url": "https://gitlab.com/cellule-financiere-pmo/design-system/visua-vue.git"
|
2025-07-17 14:51:23 +02:00
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://gitlab.com/cellule-financiere-pmo/design-system/visua-vue/issues"
|
|
|
|
},
|
2025-07-20 02:45:37 +02:00
|
|
|
"homepage": "https://gitlab.com/cellule-financiere-pmo/design-system/visua-vue#readme",
|
2025-07-30 01:46:28 +02:00
|
|
|
"keywords": [
|
|
|
|
"vue",
|
|
|
|
"typescript",
|
|
|
|
"design-system",
|
|
|
|
"components",
|
|
|
|
"vite",
|
|
|
|
"library"
|
|
|
|
],
|
2025-07-30 18:48:57 +02:00
|
|
|
"author": {
|
|
|
|
"name": "CGI",
|
|
|
|
"url": "https://www.cgi.com"
|
|
|
|
},
|
2025-07-30 01:46:28 +02:00
|
|
|
"license": "ISC"
|
2025-07-31 02:00:04 +02:00
|
|
|
}
|