-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 3.03 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "mots-flex",
"version": "2.0.0",
"description": "Generateur de mots fleches",
"homepage": "https://github.com/Leo-Nicolle/mots-fleches",
"scripts": {
"prepare": "cd grid && npm i && cd ../database && npm i && cd ../client && npm i && cd ../server && npm i",
"build:grid": "cd grid && npm run build",
"build:database": "cd database && npm run build",
"build:client": "cd client && npm run build",
"build:server": "cd server && npm run build",
"build": "npm run build:grid && npm run build:database && npm run build:client && npm run build:server",
"postbuild": "node scripts/postbuild.mjs",
"doc:grid": "cd grid && typedoc --plugin typedoc-plugin-markdown --out ../docs/grid src/index.ts",
"doc:server": "cd server && typedoc --plugin typedoc-plugin-markdown --out ../docs/server lib/**/*.ts",
"docdev:client": "vue-docgen -c docs/docgen.config.js -w",
"doc:client": "vue-docgen -c docs/docgen.config.js",
"docs:dev": "vuepress dev docs --config docs/vuepress.config.ts",
"predocs:build": "npm run doc:server && npm run doc:grid && npm run doc:client",
"predocs:publish": "npm run docs:build",
"docs:publish": "gh-pages -d docs/.vuepress/dist",
"docs:build": "vuepress build docs --config docs/vuepress.config.ts",
"semantic-release": "semantic-release"
},
"author": "Leo Nicolle",
"files": [
"dist/"
],
"license": "MIT",
"contributors": [
{
"name": "Leo Nicolle",
"email": "nicolle_leo@yahoo.fr"
}
],
"devDependencies": {
"@angablue/exe": "^1.2.0",
"@playwright/test": "^1.32.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^10.0.3",
"@semantic-release/release-notes-generator": "^10.0.3",
"@vitejs/plugin-vue": "^4.1.0",
"@vue/test-utils": "^2.3.1",
"@vuepress/plugin-search": "next",
"adm-zip": "^0.5.10",
"decompress": "^4.2.1",
"execa": "^7.1.1",
"fs-extra": "^11.1.0",
"gh-pages": "^5.0.0",
"js-yaml": "^4.1.0",
"jsdom": "^21.1.1",
"markdown-it-html5-media": "^0.7.1",
"npm-pkgbuild": "file:../npm-pkgbuild",
"pkg": "^5.8.1",
"rimraf": "^4.4.0",
"semantic-release": "^21.0.1",
"typedoc": "^0.24.4",
"typedoc-plugin-markdown": "^3.15.1",
"vitest": "^0.29.5",
"vue-docgen-cli": "^4.65.0",
"vuepress": "next",
"w-zip": "^1.0.15"
},
"pkgbuild": {
"control": {
"postbuild": "scripts/assets/postbuild.sh"
},
"content": {
"usr/share/applications/mots-flex.desktop": "scripts/assets/mots-flex.desktop",
"usr/share/mots-flex/": "build/",
"/usr/share/icons/hicolor/scalable/apps/mots-flex.svg": "scripts/assets/icon.svg",
"usr/bin/mots-flex": "scripts/assets/mots-flex"
},
"output": {
"debian": {}
},
"name": "mots-flex",
"title": "Mots-Flex"
},
"repository": {
"type": "git",
"url": "https://github.com/Leo-Nicolle/mots-fleches.git"
}
}