scum-quest-library
Version:
S.C.U.M. Quest Library
89 lines (88 loc) • 2.65 kB
JSON
{
"name": "scum-quest-library",
"version": "1.4.0",
"description": "S.C.U.M. Quest Library",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/florianbeisel/scum-quest-lib.git"
},
"author": "Florian Beisel",
"license": "MIT",
"homepage": "https://github.com/florianbeisel/scum-quest-lib",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "vitest",
"test:watch": "vitest watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:coverage:watch": "vitest run --coverage --watch",
"test:coverage:ui": "vitest run --coverage --ui",
"generate-schema": "tsx scripts/generate-schemas.ts",
"validate-examples": "tsx scripts/validate-examples.ts",
"type-check": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,json,md}\"",
"ci": "yarn type-check && yarn lint && yarn format:check && yarn test:coverage && yarn build",
"semantic-release": "semantic-release"
},
"files": [
"dist",
"jsco-schemas",
"examples"
],
"keywords": [
"scum",
"quest"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./schemas": "./jsco-schemas/quest.json",
"./examples": "./examples"
},
"dependencies": {
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"zod": "^3.25.67"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@eslint/js": "^9.29.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@types/node": "^24.0.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "3.2.4",
"eslint": "^9.29.0",
"prettier": "^3.2.5",
"rollup": "^4.44.0",
"semantic-release": "^24.2.5",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1",
"vitest": "^3.2.4",
"zod-to-json-schema": "^3.24.5"
},
"release": {
"branches": [
"main"
]
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}