-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.16 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
{
"name": "dwp",
"version": "2.10.6",
"description": "A nodejs cli tool for fetching Bing wallpapers regularly",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"bin": {
"dwp": "./dist/bin/cli.js"
},
"scripts": {
"test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"build": "rimraf dist && tsup-node",
"prepublishOnly": "npm run test && npm run build",
"postpublish": "node ./scripts/postPublish.js",
"help": "npm run build && node ./dist/bin/cli.js -h",
"debug": "npm run build && node ./dist/bin/cli.js start -i 30m -m 2",
"stop": "npm run build && node ./dist/bin/cli.js stop",
"showlist": "npm run build && node ./dist/bin/cli.js list",
"log": "npm run build && node ./dist/bin/cli.js log --lines 100",
"lint": "biome check --write src/**/*.ts"
},
"keywords": ["nodejs", "wallpaper", "crawler", "cron", "bing", "daemon"],
"repository": {
"type": "git",
"url": "git+https://github.com/avennn/daily-wallpaper.git"
},
"author": {
"name": "Thomas Leung",
"email": "[email protected]",
"url": "https://github.com/avennn"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/avennn/daily-wallpaper/issues"
},
"homepage": "https://github.com/avennn/daily-wallpaper#readme",
"dependencies": {
"axios": "^0.27.2",
"bshell": "^0.0.2",
"chalk": "^4.1.2",
"cli-table3": "^0.6.0",
"commander": "^8.2.0",
"cross-env": "^7.0.3",
"dayjs": "^1.8.23",
"is-online": "^10.0.0",
"log4js": "^6.4.1",
"nc-screen": "^1.4.0",
"plist": "^3.1.0",
"ps-node": "^0.1.6",
"puppeteer": "^15.1.0",
"shelljs": "^0.8.5",
"toad-scheduler": "^1.5.0",
"tori": "^2.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@tsconfig/node20": "^20.1.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.1",
"@types/plist": "^3.0.2",
"@types/ps-node": "^0.1.1",
"@types/puppeteer": "^5.4.6",
"@types/shelljs": "^0.8.15",
"@types/xml2js": "^0.4.8",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.4.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}