-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.39 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
{
"name": "@newhorizons/core",
"version": "0.1.0",
"author": {
"name": "spuxx",
"email": "[email protected]",
"url": "https://spuxx.dev"
},
"license": "SEE https://github.com/satellite-games/newhorizons-core/blob/main/LICENSE.md",
"keywords": [
"newhorizons"
],
"repository": {
"type": "git",
"url": "https://github.com/satellite-games/newhorizons-core"
},
"homepage": "https://github.com/satellite-games/newhorizons-core/blob/main/README.md",
"bugs": {
"url": "https://github.com/satellite-games/newhorizons-core/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"
},
"./locales": {
"types": "./dist/locales.d.ts",
"import": "./dist/locales.js"
},
"./mocks": {
"types": "./dist/mocks.d.ts",
"import": "./dist/mocks.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"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 && pnpm run lint-registries",
"types": "tsc --noEmit",
"lint": "eslint . --ext ts,tsx",
"prettier-check": "prettier --check .",
"madge": "pnpm run madge:orphans && pnpm run madge:circular",
"madge:orphans": "madge --orphans lib/main.ts",
"madge:circular": "madge --circular lib/main.ts",
"format": "prettier --write .",
"create-registry": "node scripts/create-registry.js",
"lint-registries": "node scripts/lint-registries.js"
},
"devDependencies": {
"@modyfi/vite-plugin-yaml": "^1.1.0",
"@spuxx/browser-utils": "^0.3.0",
"@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",
"madge": "^7.0.0",
"prettier": "^3.1.1",
"typescript": "^5.2.2",
"uuid": "^9.0.1",
"vite": "^5.2.8",
"vite-plugin-dts": "^3.9.1",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0",
"@satellite-games/orbit": "link:../orbit"
}
}