-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.7 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
{
"name": "electerm.org",
"version": "0.3.1",
"description": "homepage for electerm",
"main": "index.js",
"type": "module",
"scripts": {
"start": "npm run dev",
"dev": "node bin/dev-server.js",
"b": "./bin/build",
"build": "echo 1",
"build-only": "./bin/build-only",
"build-html": "node bin/build-all.js",
"build-css": "node bin/build-css.js",
"down": "node bin/fetch-release-info.js",
"deb": "node bin/build-deb.js",
"sitemap": "node bin/sitemap.js",
"fix": "standard --fix",
"lint": "standard",
"pub": "npm run build && vercel --prod",
"cp": "cp -r src/static/* public/ && cp -r data public/",
"rm": "rm -rf public/ && mkdir public",
"s": "node bin/server.mjs",
"cut": "./bin/qr-code.cut.js"
},
"repository": {
"type": "git",
"url": "https://github.com/electerm/electerm.org.git"
},
"keywords": [
"electerm.org",
"electerm"
],
"author": {
"name": "ZHAO Xudong",
"email": "zxdong@gmail.com",
"url": "http://html5beta.com"
},
"devDependencies": {
"@electerm/electerm-locales": "^2.2.16",
"axios": "^1.18.0",
"canvas": "^3.2.3",
"dayjs": "^1.11.21",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"json5": "^2.2.3",
"morgan": "^1.11.0",
"pug": "^3.0.4",
"sitemaps": "^2.0.6",
"standard": "^17.1.2",
"stylus": "^0.64.0"
},
"standard": {
"ignore": [
"*.html",
"/res/",
"/temp",
"/data",
"/public"
],
"parserOptions": {
"requireConfigFile": false,
"sourceType": "module"
}
},
"license": "MIT",
"bugs": {
"url": "https://github.com/electerm/electerm.org/issues"
},
"homepage": "https://electerm.org"
}