-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.07 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.07 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "apify-sdk-js",
"private": true,
"description": "Apify SDK monorepo",
"workspaces": [
"packages/*",
"packages/actor-scraper/*"
],
"keywords": [
"apify",
"headless",
"chrome",
"puppeteer",
"crawler",
"scraper"
],
"author": {
"name": "Apify",
"email": "support@apify.com",
"url": "https://apify.com"
},
"contributors": [
"Jan Curn <jan@apify.com>",
"Marek Trunkat <marek@apify.com>",
"Ondra Urban <ondra@apify.com>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/apify/apify-ts"
},
"bugs": {
"url": "https://github.com/apify/apify-ts/issues"
},
"homepage": "https://sdk.apify.com",
"scripts": {
"prepare": "husky",
"prepublishOnly": "turbo run copy",
"clean": "turbo run clean",
"build": "turbo run build",
"ci:build": "turbo run build --cache-dir=\".turbo\"",
"test": "vitest run --silent",
"test:e2e": "node test/e2e/runScraperTests.mjs",
"tsc-check-tests": "tsc --noEmit --project test/tsconfig.json",
"coverage": "vitest --coverage",
"release": "npm run build && lerna publish from-package --contents dist",
"publish:next": "lerna publish --canary --preid beta --dist-tag next",
"release:next": "npm run build && npm run publish:next",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"lint-staged": {
"packages/*/src/**/*": [
"eslint --fix"
],
"test/**/*": [
"eslint --fix"
],
"*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@apify/consts": "^2.29.0",
"@apify/eslint-config": "^1.0.0",
"@apify/input_secrets": "^1.2.0",
"@apify/log": "^2.5.22",
"@apify/tsconfig": "^0.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@playwright/browser-chromium": "^1.46.0",
"@types/content-type": "^1.1.8",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.0.0",
"@types/semver": "^7.5.8",
"@types/tough-cookie": "^4.0.5",
"@types/ws": "^8.5.12",
"apify": "^3.5.3",
"apify-client": "^2.17.0",
"commitlint": "^20.0.0",
"crawlee": "^3.16.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"fs-extra": "^11.2.0",
"gen-esm-wrapper": "^1.1.3",
"globby": "^14.1.0",
"husky": "^9.1.7",
"lerna": "^9.0.0",
"lint-staged": "^16.0.0",
"playwright": "^1.46.0",
"prettier": "3.6.2",
"puppeteer": "^24.0.0",
"rimraf": "^6.0.1",
"tsx": "^4.16.5",
"turbo": "2.6.0",
"typescript": "~5.9.0",
"typescript-eslint": "^8.28.0",
"vite-tsconfig-paths": "^5.0.0",
"vitest": "^3.0.0"
},
"packageManager": "npm@10.9.2"
}