character-card-utils
Version:
Parsers, validators, and converters for chatbot character cards following the V2 spec (https://github.com/malfoyslastname/character-card-spec-v2)
53 lines (52 loc) • 1.58 kB
JSON
{
"name": "character-card-utils",
"version": "2.0.3",
"description": "Parsers, validators, and converters for chatbot character cards following the V2 spec (https://github.com/malfoyslastname/character-card-spec-v2)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --config jestconfig.json",
"mkdocs": "npx typedoc src/index.ts --customCss ./typedocStyle.css --sort kind --sort source-order --categorizeByGroup false",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/malfoyslastname/character-card-utils.git"
},
"keywords": [
"tavern",
"agnai",
"risu",
"character cards",
"tavern cards"
],
"author": "malfoyslastname",
"license": "ISC",
"bugs": {
"url": "https://github.com/malfoyslastname/character-card-utils/issues"
},
"homepage": "https://github.com/malfoyslastname/character-card-utils#readme",
"devDependencies": {
"@types/jest": "^29.5.2",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.24.7",
"typescript": "^5.0.4"
},
"dependencies": {
"zod": "^3.21.4"
}
}