-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.18 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
{
"name": "remark-flexible-code-titles",
"version": "1.0.9",
"description": "Remark plugin to add titles or/and containers for the code blocks with customizable properties",
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"lint": "eslint \"{**/*,*}.{js,ts}\"",
"prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts}\"",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --config ./jest.config.cjs",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run prettier && npm run lint",
"prebuild": "rimraf dist"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ipikuka/remark-flexible-code-titles.git"
},
"keywords": [
"unified",
"remark",
"remark-plugin",
"markdown",
"remark-code-titles"
],
"author": "ipikuka <talatkuyuk@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/ipikuka/remark-flexible-code-titles#readme",
"bugs": {
"url": "https://github.com/ipikuka/remark-flexible-code-titles/issues"
},
"devDependencies": {
"@types/dedent": "^0.7.0",
"@types/jest": "^29.4.0",
"@types/mdast": "^3.0.10",
"@types/node": "^18.11.18",
"@types/unist": "^2.0.6",
"@types/vfile": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"dedent": "^0.7.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.1",
"prettier": "^2.8.3",
"rehype-stringify": "^9.0.3",
"remark": "^14.0.2",
"remark-gfm": "^3.0.1",
"remark-rehype": "^10.1.0",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"dependencies": {
"unist-util-visit": "^4.1.2"
}
}