-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.59 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.59 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
59
60
61
62
63
64
65
{
"name": "markdown-code-block-meta",
"version": "0.1.1",
"description": "A library to parse/stringify metadata of markdown code block",
"license": "MIT",
"author": {
"name": "Eric Chen"
},
"keywords": [
"code-block",
"key-value",
"markdown",
"meta",
"metadata",
"pair",
"remark"
],
"homepage": "https://github.com/show-docs/markdown-code-block-meta",
"repository": {
"type": "git",
"url": "git+https://github.com/show-docs/markdown-code-block-meta.git"
},
"bugs": {
"url": "https://github.com/show-docs/markdown-code-block-meta/issues"
},
"main": "index.js",
"files": [
"index.d.ts"
],
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint:eslint": "eslint . --quiet --fix --concurrency=auto",
"lint:staged": "nice-move lint staged",
"lint:type": "tsc -p tsconfig.json",
"prepare": "nice-move git hooks",
"prepublishOnly": "pnpm run lint:staged && pnpm run lint:type && pnpm test && pnpm run build",
"snapshot": "ava --fail-fast -u",
"test": "ava --fail-fast"
},
"devDependencies": {
"@bring-it/npm": "^0.9.3",
"@nice-move/all-in-base": "^0.6.31",
"ava": "^6.4.1",
"eslint": "^9.39.2",
"garou": "^0.9.17",
"prettier": "~3.7.4",
"typescript": "~5.9.3"
},
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">=20.0.0",
"pnpm": "^10.28.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"ava": {
"extensions": [
"mts"
]
},
"prettier": "@nice-move/prettier-config"
}