-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "tic-tac-toe-minimax",
"version": "1.1.0",
"description": "A tic-tac-toe web application that has a computer player that uses the minimax algorithm to make moves.",
"main": "lib/TicTacToe.js",
"scripts": {
"dev": "node dev",
"format": "npx prettier --write \"./**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
},
"keywords": [
"minimax",
"tic-tac-toe"
],
"author": "mrdcvlsc",
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.4",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^10.0.5",
"@semantic-release/release-notes-generator": "^11.0.7",
"prettier": "^3.0.3",
"semantic-release": "^21.1.1"
},
"type": "module",
"dependencies": {
"@fastify/static": "^6.11.0",
"fastify": "^4.22.2"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/changelog",
"@semantic-release/git"
],
"branches": [
"main"
]
}
}