-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
84 lines (84 loc) · 2.63 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
76
77
78
79
80
81
82
83
84
{
"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/run.mjs",
"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 \"packages/**/src/**/*\" test",
"lint:fix": "eslint \"packages/**/src/**/*\" test --fix"
},
"devDependencies": {
"@apify/consts": "^2.29.0",
"@apify/eslint-config-ts": "^0.4.1",
"@apify/input_secrets": "^1.1.53",
"@apify/tsconfig": "^0.1.0",
"@commitlint/config-conventional": "^19.2.2",
"@playwright/browser-chromium": "^1.46.0",
"@types/content-type": "^1.1.8",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.1.0",
"@types/semver": "^7.5.8",
"@types/tough-cookie": "^4.0.5",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"commitlint": "^19.3.0",
"crawlee": "^3.11.5",
"eslint": "^8.57.0",
"fs-extra": "^11.2.0",
"gen-esm-wrapper": "^1.1.3",
"husky": "^9.1.4",
"lerna": "^8.1.8",
"lint-staged": "^15.2.8",
"playwright": "^1.46.0",
"puppeteer": "^22.15.0",
"rimraf": "^6.0.1",
"tsx": "^4.16.5",
"turbo": "2.3.0",
"typescript": "~5.6.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.5"
},
"packageManager": "npm@10.9.0"
}