-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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
{
"name": "@sapkotamadan/cache-server",
"version": "2.0.8",
"description": "CacheServer is an efficient web page extractor that uses Puppeteer to launch a headless browser and fetch web page content.",
"homepage": "https://github.com/remotemerge/cache-server",
"license": "MIT",
"private": false,
"author": {
"name": "Madan Sapkota",
"email": "contact+github@madansapkota.com",
"url": "https://madansapkota.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/remotemerge/cache-server.git"
},
"bugs": {
"url": "https://github.com/remotemerge/cache-server/issues"
},
"engines": {
"node": ">=20.10 <21.0.0"
},
"prettier": {
"singleQuote": true
},
"type": "module",
"scripts": {
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"format": "prettier --write **/*.ts **/**/*.ts",
"build": "vite build && tsx ./makers/package.ts",
"cache-server": "npm run build && node dist/js/app.js"
},
"dependencies": {
"express": "^4.18.2",
"puppeteer": "^21.6.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-plugin-jsdoc": "^46.9.1",
"eslint-plugin-prettier": "^5.1.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vite": "^5.0.10"
},
"optionalDependencies": {
"prettier": "^3.1.1"
}
}