fomod
Version:
A library for creating, parsing, editing, and validating XML-based Fomod installers, widely popularized in the Bethesda modding scene
73 lines • 1.71 kB
JSON
{
"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.3.0",
"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": "tsup src/index.ts",
"test": "vitest --run",
"test-ci": "vitest --run",
"typecheck": "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",
"tsup": "^8.5.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"keywords": [
"fomod",
"xml",
"installer",
"mod",
"modding",
"bethesda",
"fallout mod",
"mod installer",
"fomod installer",
"fomod xml"
],
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}