-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "@nmscd/coordinate-conversion",
"private": false,
"version": "1.2.5",
"type": "module",
"description": "Library to convert NMS coordinates",
"main": "./dist/coordinate-conversion.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"format": "prettier --write src/",
"test:dev": "vitest --ui",
"test": "vitest run",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NMSCD/Coordinate-Conversion.git"
},
"keywords": [
"No Man's Sky",
"Coordinates",
"Converter"
],
"author": "NMSCD",
"license": "MIT",
"bugs": {
"url": "https://github.com/NMSCD/Coordinate-Conversion/issues"
},
"homepage": "https://nmscd.com/Coordinate-Conversion/",
"devDependencies": {
"@types/node": "^20.14.2",
"@vitest/coverage-v8": "^2.0.3",
"@vitest/ui": "^2.0.3",
"prettier": "^3.3.3",
"typescript": "^5.3.3",
"vite": "^5.1.1",
"vite-plugin-dts": "^3.7.2",
"vitest": "^2.0.3"
}
}