-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.23 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
{
"name": "@borkenware/spoonfeed",
"version": "0.1.0",
"description": "Generate beautiful documentation portals in seconds from easy-to-edit markdown files.",
"type": "module",
"main": "dist/spoonfeed.js",
"repository": "[email protected]:borkenware/spoonfeed.git",
"author": "Cynthia <[email protected]>",
"license": "BSD-3-Clause",
"engines": {
"node": ">= 14"
},
"scripts": {
"lint": "eslint src --ext ts",
"build": "tsc && node postbuild.js"
},
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/runtime": "^7.12.5",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"preact": "^10.5.11",
"preact-helmet": "^4.0.0-alpha-3",
"preact-router": "^3.2.1",
"rollup": "^2.38.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.32.5",
"shiki": "^0.2.7"
},
"devDependencies": {
"@types/node": "^14.14.22",
"@types/sass": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}