-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.54 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
{
"name": "@nmsn/md-maker",
"version": "0.4.0",
"description": "Generate or insert markdown based on js configuration.",
"main": "./lib/index.js",
"module": "./es/index.js",
"types": "./es/index.d.ts",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./es/index.js",
"types": "./es/index.d.ts"
}
},
"sideEffects": false,
"type": "module",
"files": [
"lib",
"es",
"package.json",
"README.md"
],
"scripts": {
"prepare": "husky install",
"build": "rollup -c",
"release": "npm run build && rltb"
},
"repository": {
"type": "git",
"url": "https://github.com/nmsn/md-maker.git"
},
"keywords": [
"markdown",
"js",
"template"
],
"author": "nmsn <136696700@qq.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nmsn/md-maker/issues"
},
"homepage": "https://github.com/nmsn/md-maker#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/node": "^20.1.1",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"release-toolbox": "0.2.0",
"rollup": "^3.26.2",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-typescript2": "^0.35.0",
"tslib": "^2.4.1",
"typescript": "^5.0.3"
},
"engines": {
"node": ">=16"
}
}