-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "term-website",
"homepage": "https://term.micahkepe.com",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "vite",
"dev": "tsc --watch",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier --write index.html src/ styles/ config.json",
"check": "tsc",
"doc": "typedoc --entryPointStrategy expand src/ types/",
"test": "cypress run -b chrome",
"report": "nyc report",
"clean": "rm -rf dist/*",
"predeploy": "npm run clean && npm run build",
"deploy": "gh-pages -d dist -m 'deploying to gh-pages'"
},
"author": "Micah Kepe",
"license": "MIT",
"browserslist": "defaults",
"devDependencies": {
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"gh-pages": "^6.1.1",
"prettier": "^3.4.1",
"typedoc": "^0.27.5",
"typescript": "^5.7.2",
"vite": "^6.0.1"
},
"engines": {
"node": ">=20.11.1"
},
"dependencies": {
"@xterm/addon-ligatures": "^0.9.0",
"@xterm/addon-search": "^0.15.0",
"@xterm/addon-web-links": "^0.11.0"
}
}