-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 2.08 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "frost-gen",
"version": "0.1.0-b",
"description": "🚀 A static site generator.",
"main": "build/cli/index.js",
"type": "module",
"files": [
"build"
],
"bin": {
"frost": "./build/cli/index.js"
},
"scripts": {
"format": "prettier --write src/**/*.ts",
"dev": "ts-node src/cli/index.ts --serve --port 3000",
"build": "rimraf build && tsc",
"test": "node --experimental-specifier-resolution=node __test__/test.js ./check.js",
"prepare": "husky install",
"package": "pkg .",
"docs:serve":"cd __docs__ && npx codedoc serve",
"docs:build":"cd __docs__ && npx codedoc build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cesiumlabs/frost.git"
},
"keywords": [
"static",
"site",
"generator"
],
"author": "Rhydderchc",
"license": "MIT",
"bugs": {
"url": "https://github.com/cesiumlabs/frost/issues"
},
"homepage": "https://github.com/cesiumlabs/frost#readme",
"devDependencies": {
"@types/common-tags": "^1.8.1",
"@types/html-minifier": "^4.0.1",
"@types/marked": "^3.0.2",
"@types/minimist": "^1.2.2",
"@types/node": "^16.11.9",
"@types/shelljs": "^0.8.9",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^7.0.0",
"pkg": "^5.4.1",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.6.2"
},
"dependencies": {
"common-tags": "^1.8.0",
"github-clone-repo": "^1.0.1",
"html-minifier": "^4.0.0",
"marked": "^3.0.7",
"minimist": "^1.2.5",
"picocolors": "^1.0.0",
"shelljs": "^0.8.4",
"terser": "^5.9.0",
"ws": "^8.2.3"
}
}