-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.43 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
{
"name": "fictif",
"version": "0.0.1",
"description": "The modern, hybrid framework for Vue 3.",
"author": "Abderrahmene Merzoug",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xipid/fictif.git"
},
"keywords": [
"vue",
"vite",
"laravel",
"inertia",
"router",
"full-stack",
"framework"
],
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/client/index.js",
"types": "./dist/client/index.d.ts"
},
"./style": {
"import": "./dist/style.css"
},
"./plugin": {
"import": "./dist/plugin/index.js",
"types": "./dist/plugin/index.d.ts"
},
"./package.json": "./package.json"
},
"main": "./dist/client/index.js",
"module": "./dist/client/index.js",
"types": "./src/client/index.d.ts",
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"docs": "bun scripts/buildDocs.mjs",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"fast-glob": "^3.3.3",
"markdown-it": "^14.1.1",
"markdown-it-mathjax3": "^5.2.0",
"unplugin-vue-markdown": "^29.2.0"
},
"peerDependencies": {
"vue": "^3.4.21"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.7.1",
"@vitejs/plugin-vue": "^6.0.4",
"typescript": "^5.4.5",
"vite": "^5.4.19",
"vite-plugin-dts": "^4.5.4",
"vue": "^3.4.21"
}
}