-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.58 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.58 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
{
"name": "@writegames.com/game-math",
"version": "0.8.0",
"license": "MIT",
"description": "A library of useful math classes & functions for game development, involving linear algebra, angles, and more.",
"main": "bin/index.js",
"types": "bin/index.d.ts",
"scripts": {
"build": "tsc --build --force tsconfig.build.json && pnpm build:single-file",
"build:single-file": "node scripts/build.ts",
"postbuild": "echo \"postbuild\"",
"prepublishOnly": "npm run build",
"generate-docs": "pnpm typedoc",
"test": "vitest --pool=forks",
"test:coverage": "vitest --pool=forks --coverage.enabled",
"lint": "eslint .",
"watch": "tsc-watch --p tsconfig.build.json --onSuccess \"pnpm postbuild\""
},
"type": "module",
"exports": {
".": {
"import": "./bin/index.js",
"types": "./bin/index.d.ts"
}
},
"packageManager": "pnpm@9.8.0",
"engines": {
"node": "^22",
"pnpm": "^9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WriteGames/game-math.git"
},
"author": "Write Games",
"devDependencies": {
"@vercel/style-guide": "^6.0.0",
"@vitest/coverage-v8": "^4.0.16",
"@writegames.com/style-guide": "^0.1.1",
"chi-squared": "^1.1.0",
"eslint": "8.56.0",
"permutation-rank": "^1.0.0",
"terser": "^5.44.1",
"tsc-watch": "^7.2.0",
"typedoc": "^0.28.15",
"typedoc-github-theme": "^0.3.1",
"typescript": "^5.9.3",
"vite": "^7.2.7",
"vitest": "^4.0.16"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"game",
"math",
"vectors",
"gamedev",
"linear algebra",
"rng",
"gamemaker",
"trigonometry",
"utility"
]
}