-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "gitbook-docs",
"version": "1.0.0",
"description": "Client-side documentation site with markdown support",
"main": "src/index.html",
"scripts": {
"dev": "node scripts/dev-server.js",
"build:css": "tailwindcss -i ./src/css/input.css -o ./src/css/output.css --minify",
"build:css:watch": "tailwindcss -i ./src/css/input.css -o ./src/css/output.css --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chandra179/gitbook.git"
},
"keywords": [
"documentation",
"markdown",
"gitbook",
"static-site"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Chandra179/gitbook/issues"
},
"homepage": "https://github.com/Chandra179/gitbook#readme",
"devDependencies": {
"autoprefixer": "^10.4.22",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.1"
},
"dependencies": {
"alpinejs": "^3.14.8",
"highlight.js": "^11.9.0",
"katex": "^0.16.9",
"marked": "^11.1.1",
"marked-katex-extension": "^5.1.8"
}
}