-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "presite",
"version": "2.0.0",
"description": "CLI app for pre-rendering SPA websites.",
"repository": {
"url": "egoist/presite",
"type": "git"
},
"bin": "dist/cli.js",
"files": [
"dist"
],
"scripts": {
"test": "npm run build",
"build": "rm -rf dist && tsup src/cli.ts --dts",
"prepublishOnly": "npm run build",
"presite": "node -r esbuild-register src/cli.ts"
},
"author": "egoist <[email protected]>",
"license": "MIT",
"dependencies": {
"@egoist/promise-queue": "^1.1.0",
"cac": "^6.7.2",
"chalk": "^4.1.0",
"fs-extra": "^9.1.0",
"get-port": "^5.0.0",
"joycon": "^3.0.1",
"polka": "^0.5.2",
"read-pkg-up": "^8.0.0",
"sirv": "^1.0.11",
"taki": "^2.3.3",
"update-notifier": "^5.1.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/polka": "^0.5.2",
"@types/puppeteer-core": "^5.4.0",
"@types/update-notifier": "^5.0.0",
"esbuild-register": "^2.3.0",
"tsup": "^4.8.21",
"typescript": "^4.2.3"
},
"engines": {
"node": ">=12"
}
}