-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.34 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
{
"name": "@vivliostyle/sitegen",
"description": "Static site generator by VFM (Vivliostyle Flavored Markdown).",
"version": "0.9.0",
"author": "Vivliostyle Foundation",
"license": "Apache-2.0",
"engines": {
"node": ">= 14"
},
"main": "dist/index.js",
"bin": {
"vivliostyle-sitegen": "dist/cli.js"
},
"files": [
"dist"
],
"keywords": [
"SSG",
"VFM",
"Vivliostyle"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vivliostyle/vivliostyle-sitegen.git"
},
"homepage": "https://github.com/vivliostyle/vivliostyle-sitegen#readme",
"bugs": {
"url": "https://github.com/vivliostyle/vivliostyle-sitegen/issues"
},
"scripts": {
"test": "jest",
"start": "npm run watch",
"tsc": "tsc --noEmit",
"build": "tsc",
"watch": "tsc -w",
"prepare": "npm run build"
},
"dependencies": {
"@vivliostyle/vfm": "^1.2.1",
"browser-sync": "^2.27.10",
"chokidar": "^3.5.3",
"commander": "^9.2.0",
"ejs": "^3.1.8",
"sass": "^1.52.0"
},
"devDependencies": {
"@types/browser-sync": "^2.26.3",
"@types/ejs": "^3.1.1",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"@types/sass": "^1.43.1",
"jest": "^28.1.0",
"jest-environment-node-single-context": "^28.0.0",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
}
}