-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.75 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "extended-markdown-adf-parser",
"version": "2.4.0",
"description": "Bidirectional parser for ADF and Extended Markdown",
"packageManager": "yarn@4.7.0",
"type": "module",
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"types": "./dist/index.d.cts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
},
"./streaming": {
"types": "./dist/streaming.d.cts",
"import": "./dist/streaming.mjs",
"require": "./dist/streaming.cjs",
"default": "./dist/streaming.mjs"
},
"./errors": {
"types": "./dist/errors.d.cts",
"import": "./dist/errors.mjs",
"require": "./dist/errors.cjs",
"default": "./dist/errors.mjs"
}
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch",
"test:coverage": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"bundle:analyze": "node scripts/bundle-analysis.js",
"prepublishOnly": "yarn build"
},
"keywords": [
"adf",
"atlassian",
"markdown",
"parser",
"confluence",
"jira"
],
"engines": {
"node": ">=20.11.1",
"yarn": ">=4.7.0"
},
"author": "Jerome Erasmus",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JeromeErasmus/extended-markdown-adf-parser.git"
},
"bugs": {
"url": "https://github.com/JeromeErasmus/extended-markdown-adf-parser/issues"
},
"homepage": "https://github.com/JeromeErasmus/extended-markdown-adf-parser#readme",
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"micromark": "^4.0.2",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"unified": "^11.0.5"
},
"devDependencies": {
"@jest/globals": "^30.1.2",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/mdast": "^4.0.4",
"@types/node": "^24.5.0",
"@types/unist": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.1.3",
"jest-util": "^30.0.5",
"prettier": "^3.6.2",
"ts-jest": "^29.4.2",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
},
"volta": {
"node": "20.11.1",
"yarn": "4.7.0"
}
}