-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.86 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
{
"name": "alphaviewlibrary",
"version": "1.1.4",
"type": "module",
"main": "index.ts",
"types": "./index.d.ts",
"module": "index.ts",
"target": "esnext",
"scripts": {
"build": "vite build",
"lint": "eslint --ext .js,.ts,.vue ./",
"format": "prettier --write \"**/*.{js,ts,vue,scss,html,md,json}\" --ignore-path .gitignore",
"test": "echo \"No test specified\" && exit 0"
},
"exports": {
".": {
"types": "./index.d.ts",
"require": "./index.ts",
"import": "./index.ts"
},
"./src/renderer/*": {
"import": "./src/Renderer/*",
"require": "./src/Renderer/*"
},
"./src/*": {
"types": "./src/*",
"import": "./src/*"
},
"./nuxt":{
"import": "./nuxt.js"
}
},
"author": "Sven Hüning",
"license": "ISC",
"devDependencies": {
"@types/mocha": "latest",
"@types/node": "latest",
"alphautils": "file:../Utils",
"mocha": "latest",
"quasar": "file:../Quasar/quasar/ui",
"sass": "^1.72.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@nuxt/kit": "^3.15.1",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/compiler-sfc": "^3.3.8",
"@vueuse/core": "^10.4.1",
"axios": "^1.4.0",
"babel-eslint": "^10.1.0",
"codemirror-editor-vue3": "^2.4.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.17.0",
"inversify": "^6.0.2",
"jsoneditor": "^10.0.0",
"lodash-es": "^4.17.21",
"markdown-it": "^14.1.0",
"monaco-editor": "^0.46.0",
"pinia": "^2.1.6",
"prettier": "^3.0.3",
"reflect-metadata": "^0.1.13",
"typescript": "^4.5.4",
"typescript-eslint": "^0.0.1-alpha.0",
"vite": "^5.0.10",
"vue": "^3.3.0",
"vue-codemirror": "^6.1.1",
"vue-i18n": "^9.14.0",
"vue-router": "^4.0.0"
}
}