-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.69 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
{
"name": "@satellite-games/orbit",
"version": "0.1.0",
"author": {
"name": "spuxx",
"email": "[email protected]",
"url": "https://spuxx.dev"
},
"license": "AGPL-3.0-only",
"keywords": [
"newhorizons"
],
"repository": {
"type": "git",
"url": "https://github.com/satellite-games/orbit"
},
"homepage": "https://github.com/satellite-games/orbit/blob/main/README.md",
"bugs": {
"url": "https://github.com/satellite-games/orbit/issues"
},
"type": "module",
"main": "dist/main.js",
"module": "dist/main.js",
"types": "dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"peerDependencies": {
"uuid": "^9.0.1"
},
"scripts": {
"build": "vite build",
"test": "pnpm run test:unit",
"test:unit": "vitest run --coverage --reporter=default --reporter=junit --outputFile='reports/junit/junit.xml'",
"check": "pnpm types && pnpm run lint && pnpm run prettier-check",
"types": "tsc --noEmit",
"lint": "eslint . --ext ts,tsx",
"prettier-check": "prettier --check .",
"format": "prettier --write ."
},
"devDependencies": {
"@types/node": "^20.12.10",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitest/coverage-v8": "^1.4.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.1",
"typescript": "^5.2.2",
"vite": "^5.2.8",
"vite-plugin-dts": "^3.9.1",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
}
}