-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.23 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
{
"name": "vue-declarative-canvas",
"private": false,
"version": "0.1.0",
"type": "module",
"main": "dist/vue-declarative-canvas.umd.cjs",
"module": "dist/vue-declarative-canvas.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build && npm run type",
"preview": "vite preview",
"type": "tsc -declaration --emitDeclarationOnly && tsc-alias",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"dependencies": {
"@babel/standalone": "^7.23.10",
"field-metadata": "*",
"lodash": "^4.17.21",
"modern-screenshot": "^4.4.38",
"vue": "~3.3.4"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@jetblack/operator-overloading": "^0.2.0",
"@rushstack/eslint-patch": "^1.3.3",
"@types/babel__core": "^7.20.5",
"@types/babel__standalone": "^7.1.7",
"@types/lodash": "^4.14.202",
"@vitejs/plugin-vue": "^4.6.2",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.3",
"vite": "^4.5.2",
"vite-plugin-babel": "^1.2.0",
"vue-tsc": "^1.8.27"
}
}