-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.9 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "markdown-function",
"version": "2.0.0",
"description": "Markdown builder functions.",
"keywords": [
"markdown",
"builder",
"tempalte",
"escape"
],
"homepage": "https://github.com/azu/markdown-function",
"bugs": {
"url": "https://github.com/azu/markdown-function/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/azu/markdown-function.git"
},
"license": "MIT",
"author": "azu",
"sideEffects": "false",
"type": "module",
"exports": {
".": {
"import": {
"types": "./module/index.d.ts",
"default": "./module/index.js"
},
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"main": "./lib/index.js",
"module": "./module/index.js",
"types": "./module/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"./lib/",
"./bin/",
"./module/",
"./src/"
],
"scripts": {
"build": "tsc -p . && tsc -p ./tsconfig.cjs.json && tsconfig-to-dual-package",
"clean": "git clean -fx lib/ module/",
"prepare": "git config --local core.hooksPath .githooks",
"prepublishOnly": "npm run clean && npm run build",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"test": "mocha",
"watch": "tsc -p . --watch"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"lint-staged": "^10.5.3",
"mocha": "^10.2.0",
"prettier": "^2.2.1",
"ts-node": "^10.9.1",
"tsconfig-to-dual-package": "^1.1.0",
"typescript": "^4.9.4"
},
"packageManager": "yarn@1.22.19"
}