1 | {
|
2 | "name": "mdtocs",
|
3 | "version": "1.0.4",
|
4 | "description": "Markdown table of contents generator.",
|
5 | "author": "Mark <mark@remarkablemark.org>",
|
6 | "main": "cjs/index.js",
|
7 | "scripts": {
|
8 | "build": "npm run build:cjs && npm run build:umd",
|
9 | "build:cjs": "tsc --declaration --outDir cjs",
|
10 | "build:umd": "rollup --config",
|
11 | "clean": "rm -rf cjs umd",
|
12 | "lint": "eslint .",
|
13 | "lint:fix": "npm run lint -- --fix",
|
14 | "lint:tsc": "tsc --noEmit",
|
15 | "prepare": "husky",
|
16 | "prepublishOnly": "npm run lint && npm test && npm run clean && npm run build",
|
17 | "size": "npm run build && size-limit",
|
18 | "test": "jest --coverage",
|
19 | "test:watch": "jest --watch"
|
20 | },
|
21 | "homepage": "https://remarkablemark.org/mdtocs/",
|
22 | "repository": {
|
23 | "type": "git",
|
24 | "url": "https://github.com/remarkablemark/mdtocs"
|
25 | },
|
26 | "bugs": {
|
27 | "url": "https://github.com/remarkablemark/mdtocs/issues"
|
28 | },
|
29 | "keywords": [
|
30 | "mdtocs",
|
31 | "md",
|
32 | "toc",
|
33 | "markdown",
|
34 | "table",
|
35 | "of",
|
36 | "contents",
|
37 | "generator"
|
38 | ],
|
39 | "devDependencies": {
|
40 | "@commitlint/cli": "19.4.1",
|
41 | "@commitlint/config-conventional": "19.4.1",
|
42 | "@eslint/compat": "1.1.1",
|
43 | "@eslint/eslintrc": "3.1.0",
|
44 | "@eslint/js": "9.9.1",
|
45 | "@rollup/plugin-typescript": "11.1.6",
|
46 | "@size-limit/preset-small-lib": "11.1.4",
|
47 | "@types/jest": "29.5.12",
|
48 | "@typescript-eslint/eslint-plugin": "8.3.0",
|
49 | "@typescript-eslint/parser": "8.3.0",
|
50 | "eslint": "9.9.1",
|
51 | "eslint-plugin-prettier": "5.2.1",
|
52 | "eslint-plugin-simple-import-sort": "12.1.1",
|
53 | "eslint-plugin-tsdoc": "0.3.0",
|
54 | "globals": "15.9.0",
|
55 | "husky": "9.1.5",
|
56 | "jest": "29.7.0",
|
57 | "lint-staged": "15.2.9",
|
58 | "prettier": "3.3.3",
|
59 | "rollup": "2.79.1",
|
60 | "rollup-plugin-terser": "7.0.2",
|
61 | "size-limit": "11.1.4",
|
62 | "ts-jest": "29.2.5",
|
63 | "typescript": "5.5.4"
|
64 | },
|
65 | "files": [
|
66 | "cjs/",
|
67 | "umd/"
|
68 | ],
|
69 | "license": "MIT"
|
70 | }
|