-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.3 KB
/
package.json
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
{
"name": "fachwerk",
"version": "0.0.29",
"engines": {
"node": "^14.13.1 || >=16.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fachwerk-dev/fachwerk.git"
},
"homepage": "https://github.com/fachwerk-dev/fachwerk",
"keywords": [
"vite",
"vue",
"vue-component",
"svg",
"canvas",
"three"
],
"files": [
"dist"
],
"type": "module",
"module": "./dist/fachwerk.mjs",
"main": "./dist/fachwerk.cjs",
"exports": {
".": {
"import": "./dist/fachwerk.mjs",
"require": "./dist/fachwerk.cjs"
},
"./vue": {
"import": "./dist/vue.mjs",
"require": "./dist/vue.cjs"
},
"./vue.css": {
"import": "./dist/vue.css",
"require": "./dist/vue.css"
}
},
"scripts": {
"dev": "vite --port 3000 --host -c vite.config.app.ts --open",
"build": "vite build -c vite.config.functions.ts && vite build -c vite.config.vue.ts && vite build -c vite.config.app.ts",
"test": "vitest",
"typecheck": "vue-tsc --noEmit",
"bump": "bumpp --commit \"chore: v%s\""
},
"dependencies": {
"d3-shape": "^3.1.0",
"katex": "^0.15.3",
"mitt": "^3.0.0",
"pdf-lib": "^1.17.1",
"svgpath": "^2.5.0",
"three": "^0.140.2",
"vite-plugin-monaco-editor": "^1.1.0",
"vue": "^3.2.34"
},
"devDependencies": {
"@babel/types": "^7.18.0",
"@iconify-json/bx": "^1.1.2",
"@iconify-json/tabler": "^1.1.13",
"@tailwindcss/typography": "^0.5.2",
"@types/d3-shape": "^3.0.2",
"@types/katex": "^0.14.0",
"@types/markdown-it-external-links": "^0.0.0",
"@types/node": "^17.0.35",
"@types/react": "file:src/types",
"@types/three": "^0.140.0",
"@vitejs/plugin-vue": "^2.3.3",
"@vueuse/core": "^8.5.0",
"bumpp": "^7.1.1",
"gray-matter": "^4.0.3",
"markdown-it-external-links": "^0.0.6",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.11",
"tailwind-merge": "^1.2.1",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.4",
"unplugin-icons": "^0.14.3",
"vite": "^2.9.9",
"vite-plugin-fonts": "^0.4.0",
"vite-plugin-md": "^0.13.1",
"vite-plugin-pages": "^0.23.0",
"vitepress": "^0.22.4",
"vitest": "^0.12.6",
"vue-router": "^4.0.14",
"vue-tsc": "^0.34.15"
}
}