-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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
{
"name": "@trunkio/markdown-to-adf",
"version": "0.0.1",
"private": false,
"description": "A simple library for converting markdown to Atlassian Document Format (ADF)",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
}
},
"files": [
"dist/**"
],
"scripts": {
"build": "tsc --emitDeclarationOnly --declaration --outDir dist/types && trunk-tsc",
"test": "NODE_OPTIONS='--experimental-vm-modules' trunk-jest"
},
"dependencies": {
"mdast-util-from-markdown": "2.0.1",
"mdast": "3.0.0"
},
"devDependencies": {
"@trunkio/infra-build-jest": "workspace:*",
"@trunkio/infra-build-tsc": "workspace:*",
"@types/chai": "4.3.16",
"@jest/globals": "^29.7.0",
"@types/mdast": "4.0.4",
"@types/mocha": "10.0.7",
"@types/node": "20.14.10",
"@typescript-eslint/eslint-plugin": "7.4.0",
"@typescript-eslint/parser": "7.4.0",
"chai": "5.1.1",
"concurrently": "8.2.2",
"eslint":"8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"mocha": "10.6.0",
"prettier": "3.3.3",
"prettier-eslint": "16.3.0",
"tslib": "2.6.3",
"tsup": "8.2.3",
"tsx": "4.16.2",
"typescript": "5.5.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}