-
-
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.54 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.54 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": "sterad",
"version": "1.0.2",
"description": "Host your SPAs with SSR experience, no extra work, gain SEO and Fast Content delivery benefits..",
"main": "dist/index.js",
"type": "module",
"files": [
"dist/index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codedynasty-dev/sterad.git"
},
"author": "friday candour fridaycandours@gmail.com",
"license": "Apache",
"bugs": {
"url": "https://github.com/codedynasty-dev/sterad/issues"
},
"homepage": "https://github.com/codedynasty-dev/sterad.git",
"bin": {
"sterad": "dist/index.js"
},
"keywords": [
"web",
"fast",
"bunjs",
"server",
"http",
"spa",
"ssr",
"html",
"caching",
"seo"
],
"scripts": {
"compile": "./pack",
"bun": "bun --watch tests/app.jet.ts",
"watch": "tsc src/*.ts --target esnext --watch",
"watch:docs": "docmach",
"build": "npx docmach build",
"test": "bun run test-runner.js",
"test:verbose": "bun run test-runner.js --verbose",
"prepack": "npm run test && tsc && bun bundle.ts && npm run build",
"prepare": "tsc && bun bundle.ts && npm run build"
},
"engines": {
"node": ">=14.0.0",
"bun": ">=0.1.0"
},
"private": false,
"devDependencies": {
"@types/bun": "^1.2.17",
"docmach": "^1.0.16",
"typescript": "^5.6.3"
},
"docmach": {
"docs-directory": "docs/docs",
"assets-folder": "docs/assets",
"build-directory": "docs/build"
},
"dependencies": {
"jose": "^5.2.0",
"quick-lru": "^7.0.1"
}
}