-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.3 KB
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
{
"author": "p1va",
"name": "@p1va/ashby",
"repository": {
"type": "git",
"url": "https://github.com/p1va/ashby-cli.git"
},
"version": "0.0.7",
"description": "CLI for browsing open positions hosted via Ashby",
"license": "MIT",
"packageManager": "pnpm@10.16.1",
"type": "module",
"bin": {
"ashby": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"watch": "tsc -w",
"dev": "tsx src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"test": "vitest run",
"prepare": "husky"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.3",
"graphql": "^16.13.2",
"graphql-request": "^7.4.0",
"turndown": "^7.2.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.19.15",
"@types/turndown": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.15.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vitest": "^3.2.4"
}
}