forked from TypeStrong/typedoc-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 950 Bytes
/
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
{
"name": "typedoc-site",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/TypeStrong/typedoc-site.git",
"author": "Gerrit Birkeland <[email protected]>",
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^1.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.1.0",
"@11ty/eleventy-server-browsersync": "^1.0.2",
"eleventy-sass": "^2.1.3",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.5",
"node-fetch": "^3.2.10",
"semver": "^7.3.8",
"ts-node": "^10.9.1"
},
"scripts": {
"get-plugins": "ts-node --esm scripts/plugins.ts",
"get-changelog": "ts-node --esm scripts/changelog.ts",
"prebuild": "npm run get-plugins && npm run get-changelog",
"build": "npx @11ty/eleventy",
"serve": "npx @11ty/eleventy --serve"
},
"devDependencies": {
"@swc/core": "^1.3.8",
"@types/node": "^18.11.0",
"@types/semver": "^7.3.12"
}
}