-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
82 lines (82 loc) · 2.24 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
{
"name": "vue3-chessboard",
"version": "1.3.3",
"description": "vue3-chessboard is a component library for creating chess web apps with vue3",
"homepage": "https://qwerty084.github.io/vue3-chessboard-docs/",
"keywords": [
"vue",
"chessboard",
"chess",
"vue3",
"lichess",
"chessground",
"chess.js",
"typescript"
],
"files": [
"dist"
],
"license": "GPL-3.0",
"type": "module",
"exports": {
".": {
"import": "./dist/vue3-chessboard.js",
"require": "./dist/vue3-chessboard.cjs",
"types": "./dist/src/index.d.ts"
},
"./style.css": "./dist/style.css"
},
"types": "./dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/qwerty084/vue3-chessboard.git"
},
"bugs": {
"url": "https://github.com/qwerty084/vue3-chessboard/issues",
"email": "[email protected]"
},
"author": {
"name": "Luca Hendrik Helms",
"email": "[email protected]"
},
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly --project tsconfig.app.json && ./format.sh",
"preview": "vite preview",
"test": "vitest --environment jsdom --root src/",
"build-only": "vite build",
"format": "prettier --write src/",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore --ignore-path .eslintignore"
},
"dependencies": {
"chess.js": "^1.0.0-beta.6",
"chessground": "^9.0.2"
},
"peerDependencies": {
"vue": "^3.2.47"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.4",
"@types/chess.js": "^0.13.4",
"@types/jsdom": "^21.1.0",
"@types/node": "^18.11.18",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.1.0",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.34.0",
"eslint-plugin-vue": "^9.9.0",
"jsdom": "^21.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"typescript": "^5.0.2",
"vite": "^4.0.4",
"vitest": "^0.29.1",
"vue-tsc": "^1.1.3"
},
"prettier": {
"singleQuote": true
}
}