-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.47 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@particulatesolutions/cms-editor",
"version": "0.1.5",
"description": "CMS editor components for Socialfunders platform (internal use)",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./style.css": "./dist/index.css",
"./components/*": "./dist/components/*",
"./stores": "./dist/stores/cms.js",
"./types": "./dist/types/cms.d.ts"
},
"files": [
"dist"
],
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:watch": "vite build --watch",
"preview": "vite preview",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "eslint . --fix --cache"
},
"peerDependencies": {
"@primeuix/styled": "^0.7.4",
"@primeuix/themes": "^2.0.2",
"@primevue/forms": "^4.5.4",
"@primevue/themes": "^4.5.4",
"@vueuse/integrations": "^14.1.0",
"primevue": "^4.5.4",
"sortablejs": "^1.15.6",
"vue": "^3.5.26",
"zod": "^4.2.1"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.18",
"tailwindcss": "^4.1.18",
"tailwindcss-primeui": "^0.6.1",
"vue-i18n": "^11.2.7"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^7.1.0",
"@primevue/auto-import-resolver": "^4.5.4",
"@tsconfig/node24": "^24.0.3",
"@types/jsdom": "^27.0.0",
"@types/node": "^24.10.1",
"@types/sortablejs": "^1.15.8",
"@vitejs/plugin-vue": "^6.0.2",
"@vitest/eslint-plugin": "^1.5.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"@vueuse/integrations": "^14.1.0",
"eslint": "^9.39.1",
"eslint-plugin-vue": "~10.5.1",
"jiti": "^2.6.1",
"jsdom": "^27.2.0",
"npm-run-all2": "^8.0.4",
"primeicons": "^7.0.0",
"sass-embedded": "^1.97.1",
"typescript": "~5.9.0",
"unplugin-vue-components": "^30.0.0",
"vite": "^7.2.4",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-vue-devtools": "^8.0.5",
"vitest": "^4.0.14",
"vue-tsc": "^3.1.5"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/ParticulateSolutions/sf-cms-editor.git"
},
"keywords": [
"cms",
"vue",
"socialfunders",
"internal"
],
"author": "Socialfunders",
"license": "MIT"
}