-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "docsify-terminal-block",
"version": "1.0.3",
"description": "",
"files": [
"dist"
],
"main": "dist/index.iife.js",
"scripts": {
"dev": "concurrently \"npm run build:watch\" \"npm run serve:dist\" \"npm run serve:docs\"",
"serve:docs": "docsify serve docs",
"serve:dist": "http-server dist",
"build": "tsc && vite build",
"build:watch": "vite build --watch",
"prepublishOnly": "npm run build",
"preview": "vite preview",
"cspell": "cspell \"**\"",
"prettier": "prettier -l .",
"prettier:fix": "npm run prettier -- --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/dolanmiu/docsify-terminal-block.git"
},
"homepage": "https://github.com/dolanmiu/docsify-terminal-block",
"devDependencies": {
"autoprefixer": "^10.4.14",
"concurrently": "^8.0.1",
"cspell": "^6.30.0",
"docsify-cli": "^4.4.4",
"http-server": "^14.1.1",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"tailwindcss": "^3.2.7",
"typescript": "^5.0.2",
"vite": "^4.2.0",
"vite-plugin-css-injected-by-js": "^3.1.0"
},
"dependencies": {
"daisyui": "^2.51.4"
}
}