-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
75 lines (75 loc) · 1.99 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "pick-ems-bot",
"version": "0.0.1",
"description": "An LLM-powered agent that chooses NFL teams in a pick'ems pool.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"postinstall": "(cp -n .env.example .env || true) && npm run add-hooks && npx playwright install",
"test": "npm run clean && npm run build && npx jest",
"watch": "npx nodemon --watch src --watch test -e js,ts -x 'npm run test'",
"build": "npm run clean && npx tsc",
"start": "npm run build && node dist/src/index.js",
"clean": "rm -rf dist",
"format": "npx prettier --write --ignore-unknown .",
"check-format": "npx prettier --check --ignore-unknown .",
"add-hooks": "git config core.hooksPath .githooks",
"remove-hooks": "git config --unset core.hooksPath"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevekrenzel/pick-ems.git"
},
"files": [
"dist/src/**/*",
"readme.md"
],
"keywords": [
"llm",
"large language model",
"pickems",
"gpt-4",
"openai"
],
"author": "Steve Krenzel",
"license": "MIT",
"bugs": {
"url": "https://github.com/stevekrenzel/pick-ems/issues"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown --no-error-on-unmatched-pattern"
},
"homepage": "https://github.com/stevekrenzel/pick-ems#readme",
"jest": {
"testMatch": [
"**/dist/src/**/*_test.js"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/dist/src/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"devDependencies": {
"@types/jest": "^29.5.8",
"jest": "^29.7.0",
"json-schema-to-ts": "^3.0.0",
"lint-staged": "^13.2.2",
"nodemon": "^3.0.1",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
},
"dependencies": {
"dotenv": "^16.3.1",
"openai": "^4.24.7",
"playwright": "^1.39.0",
"tslib": "^2.5.0"
}
}