-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.04 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.04 KB
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
{
"name": "backgammon-board-react",
"version": "2.0.0",
"description": "Simplistic backgammon board in react",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "vite build",
"lint": "eslint .",
"format": "prettier --write --ignore-unknown .",
"prepare": "husky || true",
"prepublishOnly": "npm run build",
"commitlint": "commitlint --edit $1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Backgammonist/backgammon-board.git"
},
"keywords": [
"backgammon",
"boardgame",
"board"
],
"author": "Laszlo Heves<heves.laszlo@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Backgammonist/backgammon-board/issues"
},
"homepage": "https://github.com/Backgammonist/backgammon-board#readme",
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"resolutions": {
"typescript-eslint": "^8.15.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write --ignore-unknown",
"eslint --fix"
]
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "3.4.2",
"typescript": "~5.6.2",
"typescript-eslint": "^8.13.0",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.5.0"
}
}