-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.35 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.35 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
53
54
55
56
57
58
{
"name": "@karinjs/plugin-markdown",
"version": "1.1.1",
"author": "shijin",
"type": "module",
"description": "markdown plugin for karin",
"homepage": "https://github.com/KarinJS/plugin-markdown",
"bugs": {
"url": "https://github.com/KarinJS/plugin-markdown/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KarinJS/plugin-markdown.git"
},
"scripts": {
"app": "tsx src/app.ts",
"build": "tsc && tsup",
"dev": "cross-env EBV_FILE=\"development.env\" node --import tsx src/app.ts",
"pub": "npm publish --access public"
},
"main": "lib/index.js",
"devDependencies": {
"@karinjs/md-html": "^1.2.1",
"@karinjs/plugin-puppeteer": "^1.0.16",
"@types/express": "^5.0.2",
"@types/lodash": "^4.17.17",
"@types/node": "^20.17.50",
"cross-env": "^7.0.3",
"eslint": "^9.27.0",
"neostandard": "^0.11.9",
"node-karin": "^1.9.5",
"tsup": "^8.5.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"karin": {
"main": "src/index.ts",
"apps": [
"dist/apps"
],
"ts-apps": [
"src/apps"
],
"static": [],
"files": [
"config"
],
"web": "dist/web.config.js",
"ts-web": "src/web.config.ts"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}