-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1.3 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
{
"name": "gct-generator",
"version": "3.0.1",
"description": "Super Mario Sunshine Practice File Generator",
"main": "index.js",
"authors": {
"name": "Matteias Collet",
"email": "matteias.collet@protonmail.ch"
},
"repository": "https://github.com/BitPatty/gct-generator/gct-generator",
"scripts": {
"dev": "npm run codes:inject && npm run translations:compare && vuepress dev site",
"build": "node ./scripts/inject_codes.js && npm run translations:compare && vuepress build site",
"format": "prettier --write ./site/**/*{.md,.js,.json}",
"translations:compare": "node ./scripts/compare_translations.js",
"codes:inject": "node ./scripts/inject_codes.js && npm run format",
"codes:clean": "node ./scripts/clean_codes.js && npm run format",
"precommit": "npm run codes:clean && git add .",
"serve": "serve ./site/.vuepress/dist"
},
"license": "Apache-2.0",
"devDependencies": {
"@sup39/markdown-it-attr": "1.2.2",
"@sup39/markdown-it-inline-tag": "1.0.1",
"@vuepress/plugin-back-to-top": "1.9.10",
"@vuepress/plugin-medium-zoom": "1.9.10",
"jsdom": "25.0.1",
"pre-commit": "1.2.2",
"prettier": "3.4.2",
"serve": "14.2.4",
"vuepress": "1.9.10"
},
"dependencies": {
"vuedraggable": "2.24.3"
},
"pre-commit": ["precommit"]
}