-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.71 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
{
"name": "supernova",
"version": "1.0.0",
"description": "",
"main": "dist/supernova.js",
"exports": {
".": "./dist/supernova.js",
"./vite": "./dist_plugins/index.js",
"./style.css": "./dist/style.css"
},
"scripts": {
"build:all": "vite build && ./node_modules/.bin/tsc -b vite",
"build": "vite build",
"build:plugin": "./node_modules/.bin/tsc -b vite",
"lint": "eslint ./src --ext .vue,.js --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"type-check": "vue-tsc --build --force",
"docs:dev": "vitepres dev .docs"
},
"type": "module",
"keywords": [
"vue3",
"admin",
"admin-generator",
"vite-plugin"
],
"author": "",
"license": "ISC",
"dependencies": {
"@editorjs/editorjs": "^2.28.2",
"@editorjs/embed": "^2.7.0",
"@editorjs/header": "^2.8.1",
"@editorjs/image": "^2.9.0",
"@editorjs/list": "^1.9.0",
"@editorjs/table": "^2.3.0",
"axios": "^1.6.2",
"dayjs": "^1.11.10",
"debounce": "^2.0.0",
"pinia": "^2.1.7",
"vitepress": "1.0.0-rc.32",
"vue": "^3.3.12",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@tailwindcss/forms": "^0.5.7",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^18.19.2",
"@vitejs/plugin-vue": "^4.5.2",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.4.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-plugin-vue": "^9.19.2",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"tailwindcss": "^3.3.6",
"typescript": "~5.2.0",
"vite": "^5.0.7",
"vite-plugin-dts": "^3.6.4",
"vue-tsc": "^1.8.25"
}
}