-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.29 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
{
"name": "@kayibea/vectors",
"description": "A vectors library for TypeScript",
"version": "0.0.1",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest --run",
"deploy": "gh-pages -d docs"
},
"homepage": "https://kayibea.github.io/vectors-ts",
"repository": {
"type": "git",
"url": "https://github.com/kayibea/vectors-ts.git"
},
"bugs": {
"url": "https://github.com/kayibea/vectors-ts/issues"
},
"keywords": [
"vector2",
"vector3",
"math",
"game-development",
"typescript",
"geometry"
],
"author": "kiba gloirekiba21@gmail.com",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.10.1",
"gh-pages": "^6.2.0",
"jsdom": "^25.0.1",
"typedoc": "^0.27.2",
"typescript": "~5.6.2",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.6"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "lf"
},
"engines": {
"node": ">=16"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}