-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 1.76 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
83
84
85
86
87
88
89
90
91
92
{
"version": "1.0.4",
"name": "versusmaker",
"author": "Gustavo Bueno",
"module": "dist/versusmaker.esm.js",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "jest",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"release": "changeset publish"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": true
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"size-limit": [
{
"path": "dist/versusmaker.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/versusmaker.esm.js",
"limit": "10 KB"
}
],
"description": "Matchmaking library for multiplayer games",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gusbueno/versusmaker.git"
},
"keywords": [
"matchmaking",
"multplayer",
"gaming",
"matchmaker",
"mmr"
],
"bugs": {
"url": "https://github.com/gusbueno/versusmaker/issues"
},
"homepage": "https://github.com/gusbueno/versusmaker#readme",
"dependencies": {
"uuid": "^9.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@size-limit/preset-small-lib": "^8.2.4",
"@types/uuid": "^9.0.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"size-limit": "^8.2.4",
"ts-jest": "^29.0.5",
"tsdx": "^0.14.1",
"tslib": "^2.5.0",
"typescript": "^5.0.2"
}
}