This repository has been archived by the owner on Jul 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.7 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
{
"name": "cosma",
"version": "2.0.0-beta-2",
"description": "Cosma is a document graph visualization tool. It modelizes interlinked Markdown files and renders them as an interactive network in a web interface.",
"homepage": "https://cosma.graphlab.fr/",
"repository": {
"type": "git",
"url": "https://github.com/graphlab-fr/cosma.git"
},
"bugs": {
"url": "https://github.com/graphlab-fr/cosma/issues"
},
"main": "main.js",
"scripts": {
"start": "electron-forge start",
"modules": "git submodule foreach git pull origin master",
"doc": "open docs/index.html",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"watch:pages": "nodemon -w ./ -e .njk -x 'node ./controllers/build-pages'"
},
"contributors": [
"Arthur Perret",
"Guillaume Brioudes",
"Clément Borel",
"Olivier Le Deuff"
],
"author": "Guillaume Brioudes (https://myllaume.fr/)",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@electron-forge/cli": "^6.0.5",
"@electron-forge/maker-deb": "^6.0.5",
"@electron-forge/maker-dmg": "^6.0.5",
"@electron-forge/maker-squirrel": "^6.0.5",
"@electron-forge/maker-zip": "^6.0.5",
"electron": "^21.4.3"
},
"dependencies": {
"@electron-forge/publisher-github": "^6.0.4",
"@zettlr/citr": "^1.2.2",
"axios": "^0.27.2",
"citeproc": "^2.4.62",
"csv-parse": "^5.3.0",
"d3-array": "^2.12.1",
"d3-scale": "^3.3.0",
"electron-squirrel-startup": "^1.0.0",
"glob": "^7.2.0",
"markdown-it": "^13.0.1",
"markdown-it-attrs": "^4.1.4",
"moment": "^2.29.1",
"nunjucks": "^3.2.3",
"slugify": "^1.6.5",
"yaml": "^2.2.1"
}
}