-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.54 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
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
102
103
104
105
{
"name": "@ipikuka/mdx",
"version": "1.0.2",
"description": "An opinionated wrapper of `next-mdx-remote-client`",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": "./dist/index.js",
"./csr": "./dist/index.js",
"./serialize": "./dist/serialize.js",
"./rsc": "./dist/rsc.js",
"./utils": "./dist/utils.js"
},
"typesVersions": {
"*": {
"csr": [
"./dist/index.d.ts"
],
"serialize": [
"./dist/serialize.d.ts"
],
"rsc": [
"./dist/rsc.d.ts"
],
"utils": [
"./dist/utils.d.ts"
]
}
},
"scripts": {
"build": "rimraf dist && tsc --build",
"format": "npm run prettier && npm run lint",
"prettier": "prettier --write .",
"lint": "eslint .",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --config ./jest.config.cjs",
"test:file": "NODE_OPTIONS=--experimental-vm-modules jest --config ./jest.config.cjs plugins.test.tsx",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run format"
},
"files": [
"dist",
"LICENSE",
"README.md",
"tsconfig.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ipikuka/mdx.git"
},
"keywords": [
"mdx",
"markdown",
"next",
"nextjs",
"next.js",
"next-mdx-remote-client",
"remark",
"rehype",
"recma"
],
"author": "ipikuka <talatkuyuk@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/ipikuka/mdx#readme",
"bugs": {
"url": "https://github.com/ipikuka/mdx/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@ipikuka/plugins": "^1.0.2",
"next-mdx-remote-client": "^1.0.6"
},
"devDependencies": {
"@mdx-js/mdx": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.16",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"dedent": "^1.5.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"prettier-2": "npm:prettier@^2.8.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"vfile": "^6.0.3"
},
"peerDependencies": {
"react": ">= 18.3.0 < 19.0.0",
"react-dom": ">= 18.3.0 < 19.0.0"
},
"engines": {
"node": ">=18.18.0"
}
}