-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.57 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
{
"type": "module",
"name": "fomod",
"description": "A library for creating, parsing, editing, and validating XML-based Fomod installers, widely popularized in the Bethesda modding scene",
"version": "0.2.4",
"main": "dist/index.js",
"repository": "https://github.com/BellCubeDev/fomod-js/",
"bugs": {
"url": "https://github.com/BellCubeDev/fomod-js/issues/new/"
},
"author": {
"name": "BellCube",
"url": "https://bellcube.dev"
},
"license": "LGPL-3.0-or-later",
"scripts": {
"build": "tsc",
"test": "vitest --run",
"test-ci": "vitest --run",
"type-check": "tsc --noEmit"
},
"files": [
"dist",
"readme.md",
"license",
"src/**/*.ts",
"!src/**/*.test.ts",
"!src/tests/**/*"
],
"nodemonConfig": {
"watch": [
"src",
"tsconfig.json"
],
"ext": "ts,js,json",
"delay": 1000,
"exec": "ts-node --project ./tsconfig.json --esm"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/node": "^20.16.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.57.0",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unicorn": "^47.0.0",
"jsdom": "^23.2.0",
"rollup": "*",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"keywords": [
"fomod",
"xml",
"installer",
"mod",
"modding",
"bethesda",
"fallout mod",
"mod installer",
"fomod installer",
"fomod xml"
]
}