chat-bet-parse
Version:
TypeScript package for parsing sports betting contract text into structured data types compatible with SQL Server stored procedures
74 lines (73 loc) • 2.08 kB
JSON
{
"name": "chat-bet-parse",
"version": "0.3.6",
"description": "TypeScript package for parsing sports betting contract text into structured data types compatible with SQL Server stored procedures",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,json,md}\"",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build && npm run test && npm run lint"
},
"keywords": [
"sports-betting",
"parsing",
"typescript",
"mlb",
"nba",
"sql-server",
"contracts"
],
"author": "Oscar Jones",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Scapeshift-Technology/chat-bet-parse.git"
},
"bugs": {
"url": "https://github.com/Scapeshift-Technology/chat-bet-parse/issues"
},
"homepage": "https://github.com/Scapeshift-Technology/chat-bet-parse#readme",
"dependencies": {
"mssql": "^11.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/mssql": "^9.1.5",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.4.3"
},
"engines": {
"node": ">=16.0.0"
}
}