-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.47 KB
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
{
"name": "hexo-codapi",
"version": "0.1.0",
"description": "Embed Codapi executable snippets in Hexo with per-page asset injection.",
"main": "index.js",
"author": "Philippe IVALDI",
"license": "MIT",
"keywords": [
"hexo",
"hexo-plugin",
"codapi",
"code-runner",
"snippet",
"static-site-generator",
"blog"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pivaldi/hexo-codapi.git"
},
"homepage": "https://github.com/pivaldi/hexo-codapi#readme",
"bugs": {
"url": "https://github.com/pivaldi/hexo-codapi/issues"
},
"files": ["index.js", "README.md", "LICENSE"],
"dependencies": {
"hexo-util": "^3.0.0"
},
"peerDependencies": {
"hexo": ">=5.0.0"
},
"publishConfig": { "access": "public" },
"devDependencies": {
"@changesets/cli": "^2.27.0",
"chai": "^4.4.1",
"hexo": "^6.3.0",
"hexo-generator-archive": "^2.0.0",
"hexo-generator-category": "^2.0.0",
"hexo-generator-index": "^4.0.0",
"hexo-generator-tag": "^2.0.0",
"hexo-renderer-ejs": "^2.0.0",
"hexo-renderer-marked": "^6.0.0",
"hexo-test-utils": "^0.6.0",
"mocha": "^10.0.0"
},
"scripts": {
"test": "mocha \"test/**/*.spec.js\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish"
}
}