cs2schema
Version:
A TypeScript SDK for Counter-Strike 2 schema data with ID/name resolution utilities
60 lines (59 loc) • 1.48 kB
JSON
{
"name": "cs2schema",
"version": "1.0.2",
"description": "A TypeScript SDK for Counter-Strike 2 schema data with ID/name resolution utilities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:prod": "tsc --project tsconfig.prod.json",
"dev": "tsc --watch",
"clean": "rimraf dist",
"prepublishOnly": "pnpm run clean && pnpm run build:prod",
"example": "ts-node example.ts"
},
"keywords": [
"cs2",
"counter-strike",
"counter-strike-2",
"schema",
"sdk",
"typescript",
"gaming",
"steam",
"skins",
"weapons",
"stickers"
],
"author": "Your Name",
"license": "MIT",
"files": [
"dist/**/*",
"schema.json",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/cs2-schema-sdk.git"
},
"bugs": {
"url": "https://github.com/yourusername/cs2-schema-sdk/issues"
},
"homepage": "https://github.com/yourusername/cs2-schema-sdk#readme"
}