-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 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
{
"name": "yugioh-card",
"private": true,
"version": "1.0.0",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"build:lib": "vite build -- lib",
"preview": "vite preview",
"publish": "npm publish dist/ --registry https://registry.npmjs.org",
"lint": "eslint ./src --ext .vue,.js,.ts,.jsx,.tsx",
"lint-fix": "eslint --fix ./src --ext .vue,.js,.ts,.jsx,.tsx"
},
"repository": {
"type": "git",
"url": "https://github.com/kooriookami/yugioh-card"
},
"keywords": [
"yugioh-card",
"yugioh",
"rush-duel",
"ygo",
"leafer",
"canvas"
],
"author": "kooriookami",
"license": "ISC",
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"element-plus": "^2.8.6",
"json-editor-vue": "^0.17.2",
"normalize.css": "^8.0.1",
"vue": "^3.5.12",
"yugioh-card": "workspace:*"
},
"devDependencies": {
"@iconify/vue": "^4.1.2",
"@vitejs/plugin-vue": "^5.1.4",
"eslint": "^9.13.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-vue": "^9.29.1",
"jsonfile": "^6.1.0",
"rollup-plugin-copy": "^3.5.0",
"sass": "^1.80.3",
"vite": "^5.4.9"
}
}