-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.72 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
{
"name": "onedrive-scraper",
"version": "0.1.0",
"description": "Web scraper library for reading OneDrive/SharePoint folders and downloading files using a persisted authenticated browser session.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"onedrive-scraper": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"docs",
".claude"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"clean": "rm -rf dist",
"cli": "tsx src/cli.ts",
"example": "tsx examples/basic.ts",
"test": "node --import tsx --test --test-concurrency=1 \"test/**/*.test.ts\"",
"test:unit": "node --import tsx --test test/unit.test.ts test/paths.test.ts test/filters.test.ts test/tree.test.ts",
"test:live": "node --import tsx --test --test-concurrency=1 test/live.test.ts test/live-advanced.test.ts test/cli.test.ts",
"postinstall": "playwright install chromium",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"onedrive",
"sharepoint",
"scraper",
"playwright",
"download",
"cli"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/codeurjc/onedrive-scraper.git"
},
"bugs": {
"url": "https://github.com/codeurjc/onedrive-scraper/issues"
},
"homepage": "https://github.com/codeurjc/onedrive-scraper#readme",
"engines": {
"node": ">=20"
},
"dependencies": {
"commander": "^12.1.0",
"playwright": "^1.48.0"
},
"devDependencies": {
"@types/node": "^22.7.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}