-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.53 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.53 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@webqit/webflo",
"title": "Webflo",
"description": "The universal, fullstack JavaScript framework.",
"keywords": [
"git-workflow",
"self-hosting",
"automatic-deployment",
"command-line-interface",
"progressive-web-apps",
"single-page-apps",
"vanila-javascript"
],
"homepage": "https://webqit.io/tooling/webflo",
"version": "0.20.62",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/webqit/webflo.git"
},
"bugs": {
"url": "https://github.com/webqit/webflo/issues"
},
"type": "module",
"main": "./src/webflo-exports/index.js",
"exports": {
".": "./src/webflo-exports/index.js",
"./*": "./src/webflo-exports/*/index.js",
"./*.js": "./src/webflo-exports/*.js"
},
"scripts": {
"test": "echo \"Nothing to test yet\"",
"build": "echo \"Nothing to build yet\"",
"build:test": "esbuild test/browser/*.src.js --bundle --minify --sourcemap --outdir=test/browser --entry-names=[name].build",
"preversion": "npm run test",
"postversion": "git push && git push --tags",
"version:next": "npm version prerelease --preid=next",
"site:dev": "vitepress dev site --open",
"site:build": "vitepress build site",
"site:preview": "vitepress preview site --port 4173"
},
"bin": {
"webflo": "src/webflo-cli.js",
"webflo-certbot-http-auth-hook": "src/services-pi/cert/http-auth-hook.js",
"webflo-certbot-http-cleanup-hook": "src/services-pi/cert/http-cleanup-hook.js"
},
"dependencies": {
"@octokit/webhooks": "^7.15.1",
"@webqit/backpack": "^0.1.12",
"@webqit/fetch-plus": "^0.1.31",
"@webqit/keyval": "^0.2.17",
"@webqit/observer": "^3.8.14",
"@webqit/oohtml-ssr": "^2.2.4",
"@webqit/port-plus": "^0.1.22",
"@webqit/url-plus": "^0.1.8",
"@webqit/use-live": "^0.5.49",
"@webqit/util": "^0.8.11",
"chokidar": "^4.0.3",
"cross-spawn": "^7.0.6",
"dotenv": "^16.4.7",
"esbuild": "^0.27.3",
"fast-glob": "^3.3.3",
"idb": "^8.0.3",
"mime-types": "^2.1.33",
"simple-git": "^2.20.1",
"urlpattern-polyfill": "^4.0.3"
},
"devDependencies": {
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"jsdom": "^27.0.1",
"markdown-it-mathjax3": "^4.3.2",
"mocha": "^10.0.0",
"mocha-lcov-reporter": "^1.3.0",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17",
"web-push": "^3.6.7"
},
"author": "Oxford Harrison <oxharris.dev@gmail.com>",
"maintainers": [
"Oxford Harrison <oxharris.dev@gmail.com>"
],
"contributors": []
}