-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.73 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.73 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
55
56
57
58
59
60
61
62
63
{
"name": "apify-test-tools",
"version": "0.7.1",
"type": "module",
"description": "TBD",
"repository": {
"type": "git",
"url": "https://github.com/apify/apify-test-tools.git"
},
"engines": {
"node": ">=18.0.0"
},
"bin": {
"apify-test-tools": "dist/bin/main.js"
},
"types": "./dist/index.d.ts",
"main": "./dist/lib/lib.js",
"dependencies": {
"@apify/consts": "^2.43.0",
"@slack/web-api": "^7.9.2",
"apify-client": "^2.22.2",
"yargs": "^18.0.0"
},
"devDependencies": {
"@apify/eslint-config": "^1.0.0",
"@apify/tsconfig": "^0.1.1",
"@types/node": "^24.0.0",
"@types/yargs": "^17.0.33",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"globals": "^17.0.0",
"prettier": "^3.5.3",
"tsx": "^4.20.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.34.1",
"vitest": "^3.2.4",
"knip": "^5.65.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2"
},
"peerDependencies": {
"vitest": ">=3.2.4"
},
"scripts": {
"start": "npm run dist/bin/main.js",
"start:dev": "GITHUB_WORKSPACE=local-clone tsx bin/main.ts",
"build": "tsc && chmod +x ./dist/bin/main.js",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"test": "vitest run",
"check-unused": "npx knip",
"prepare": "husky .husky || true"
},
"lint-staged": {
"*.js": "eslint",
"*.ts": "eslint"
},
"author": "oklinov",
"license": "ISC"
}