generated from KarinJS/karin-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.27 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
{
"name": "@karinjs/plugin-markdown",
"version": "1.0.2",
"description": "markdown plugin for karin",
"homepage": "https://github.com/KarinJS/karin-plugin-markdown",
"bugs": {
"url": "https://github.com/KarinJS/karin-plugin-markdown/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KarinJS/karin-plugin-markdown.git"
},
"license": "MIT",
"author": "karin",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"/lib/**/*.js",
"/lib/**/*.d.ts",
"/config/**/*",
"resources/**/*",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"pub": "npm publish --access public",
"sort": "npx sort-package-json && sort-json tsconfig.json"
},
"dependencies": {
"@karinjs/md-html": "^1.1.6"
},
"devDependencies": {
"eslint": "^9.9.1",
"neostandard": "^0.11.4",
"sort-json": "^2.0.1",
"sort-package-json": "^2.10.0",
"tsc-alias": "^1.8.10",
"typescript": "^5.5.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"karin": {
"outDir": "lib",
"rootDir": "src",
"apps": [
"lib/apps"
]
}
}