-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.15 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.15 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
{
"name": "comp-org-etext",
"version": "2.1.150",
"title": "CS-131",
"description": "Computer Organization Online Textbook",
"main": "index.js",
"type": "module",
"authors": {
"name": "Mark Kozel",
"email": "Development@markkozel.net"
},
"contributors": [
{
"name": "Rachel Baumann"
},
{
"name": "Michael Wagner"
}
],
"funding": {
"type": "individual",
"url": "https://www.buymeacoffee.com/MarkKozel"
},
"homepage": "https://github.com/MarkKozel/CompOrgEText#readme",
"bugs": {
"url": "https://github.com/MarkKozel/CompOrgEText/issues"
},
"repository": "https://github.com/MarkKozel/CompOrgEText.git",
"engines": {
"node": ">=20.x"
},
"scripts": {
"dev": "vitepress dev .",
"dev:host": "vitepress dev docs --host --port 5173",
"build": "vitepress build docs",
"preview": "vitepress preview docs",
"preview:host": "vitepress preview docs --host --port 5174"
},
"devDependencies": {
"markdown-it-container": "^4.0.0",
"markdown-it-imsize": "^2.0.1",
"vitepress": "^1.5.0"
},
"dependencies": {
"vitepress-plugin-google-analytics": "^1.0.2"
}
}