-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1007 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 1007 Bytes
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
{
"name": "pwntips",
"version": "1.0.0",
"description": "Just another blog",
"homepage": "https://github.com/PwnTips/PwnTips.github.io#readme",
"bugs": {
"url": "https://github.com/PwnTips/PwnTips.github.io/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PwnTips/PwnTips.github.io.git"
},
"license": "ISC",
"author": "pwntips",
"type": "commonjs",
"main": "index.js",
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "npm run docs:build && cp -r docs/.vuepress/dist/* . && git add . && git commit -m 'Deploy VuePress site' && git push"
},
"devDependencies": {
"@playwright/test": "^1.55.1",
"@vuepress/bundler-vite": "^2.0.0-rc.24",
"@vuepress/plugin-sitemap": "^2.0.0-rc.112",
"@vuepress/theme-default": "^2.0.0-rc.112",
"baseline-browser-mapping": "^2.9.19",
"playwright": "^1.55.1",
"sass-embedded": "^1.93.2",
"vuepress": "^2.0.0-rc.24"
}
}