-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
69 lines (69 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
{
"name": "action-deploy-docs",
"version": "1.0.0",
"description": "github action for the svelte org to deploy documentation to the svelte api",
"main": "dist/cli.js",
"bin": "cli.js",
"scripts": {
"test": "uvu -r ts-node/register src test.ts$",
"build": "rollup -c",
"ts": "tsc --noEmit",
"generate:format": "node -r ts-node/register src/format/fixtures/generate_fixtures.ts",
"generate:fs": "node -r ts-node/register src/fs/fixtures/generate_fixtures.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sveltejs/action-deploy-docs.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/sveltejs/action-deploy-docs/issues"
},
"files": [
"cli.js",
"dist/"
],
"homepage": "https://github.com/sveltejs/action-deploy-docs#readme",
"devDependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-sucrase": "^3.1.0",
"@sindresorhus/slugify": "^1.1.0",
"@types/js-yaml": "^4.0.0",
"@types/marked": "^2.0.0",
"@types/prismjs": "^1.16.4",
"cheap-watch": "^1.0.3",
"js-yaml": "^4.0.0",
"marked": "^2.0.1",
"mdast-util-to-hast": "^10.2.0",
"mdast-util-to-string": "^2.0.0",
"polka": "^1.0.0-next.14",
"prettier": "^2.2.1",
"prism-svelte": "^0.4.7",
"prismjs": "^1.23.0",
"rehype-stringify": "^8.0.0",
"remark-frontmatter": "^3.0.0",
"remark-parse": "^9.0.0",
"remark-rehype": "^8.0.0",
"rollup": "^2.41.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"unified": "^9.2.1",
"unist-builder": "^2.0.3",
"unist-util-visit": "^2.0.3",
"uvu": "^0.5.1",
"vfile": "4",
"vfile-message": "^2.0.4"
},
"dependencies": {
"@actions/github": "^4.0.0",
"@polka/send": "^1.0.0-next.12",
"httpie": "^1.1.2",
"remark-gfm": "1"
}
}