-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
73 lines (73 loc) · 1.87 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
{
"name": "@codedoc/core",
"version": "0.3.2",
"engines": {
"node": ">=10"
},
"description": "Create beautiful modern documentation websites.",
"main": "dist/es5/index.js",
"module": "dist/es6/index.js",
"types": "dist/es6/index.d.ts",
"sdhTransport": "module",
"scripts": {
"start": "ts-node-dev -T samples/serve",
"test": "echo \"Error: no test specified\" && exit 1",
"build-es5": "tsc -p conf/typescript/es5.json",
"build-es6": "tsc -p conf/typescript/es6.json",
"build": "npm run build-es5 && npm run build-es6"
},
"sideEffects": false,
"files": [
"dist/es6",
"dist/es5",
"components",
"transport"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CONNECT-platform/codedoc.git"
},
"keywords": [
"documentation",
"docs",
"code documentation",
"markdown",
"jamstack",
"github-pages"
],
"author": "Eugene Ghanizadeh Khoub <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/CONNECT-platform/codedoc/issues"
},
"homepage": "https://github.com/CONNECT-platform/codedoc#readme",
"dependencies": {
"@connectv/html": "^0.2.6",
"@connectv/jss-theme": "^0.3.0",
"@connectv/marked": "^0.2.4",
"@connectv/sdh": "^0.3.0",
"@types/color": "^3.0.1",
"@types/express": "^4.17.4",
"@types/express-ws": "^3.0.0",
"@types/katex": "^0.11.0",
"@types/prismjs": "^1.16.0",
"ansi_up": "^5.0.0",
"chalk": "^4.0.0",
"color": "^3.1.2",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"jss": "^10.1.1",
"jss-preset-default": "^10.1.1",
"katex": "^0.11.1",
"node-watch": "^0.6.4",
"prismjs": "^1.19.0",
"rxjs": "^6.5.5",
"rxline": "^0.9.4",
"select": "^1.1.2"
},
"devDependencies": {
"ts-node": "^8.6.2",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
}
}