-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.54 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
{
"name": "formanator",
"version": "0.0.0-development",
"description": "Submit Forma <https://joinforma.com> claims from the command line",
"homepage": "https://github.com/timrogers/formanator",
"type": "module",
"bin": "dist/index.js",
"scripts": {
"build": "npx tsc -p tsconfig.json",
"prepublish": "npm run build",
"prepack": "node script/generate-version-file.cjs > dist/version.js",
"lint": "eslint .",
"lint-and-fix": "eslint . --fix",
"semantic-release": "semantic-release",
"dev": "npx ts-node --esm src/index.ts"
},
"files": [
"dist"
],
"keywords": [],
"author": "Tim Rogers <[email protected]>",
"license": "MIT",
"dependencies": {
"@fast-csv/parse": "^5.0.0",
"axios": "^1.4.0",
"chalk": "^5.3.0",
"cli-table": "^0.3.11",
"commander": "^13.1.0",
"openai": "^4.7.1",
"prompt-sync": "^4.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/timrogers/formanator.git"
},
"release": {
"branches": [
"main"
]
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/cli-table": "^0.3.1",
"@types/node": "^22.7.5",
"@types/prompt-sync": "^4.2.0",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"globals": "^15.14.0",
"prettier": "^3.0.0",
"semantic-release": "^24.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}