-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "@frontline-hq/recma-sections",
"version": "1.0.8",
"description": "A recma plugin to support markdown sections",
"repository": "git@github.com:frontline-hq/recma-sections.git",
"author": "Benjamin Preiss <benjaminpreiss@protonmail.com>",
"license": "MIT",
"type": "module",
"private": false,
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build && tsc --build tsconfig.build.json",
"preview": "vite preview"
},
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"types": "./dist/index.d.ts",
"devDependencies": {
"@mdx-js/mdx": "^2.2.1",
"@mdx-js/rollup": "^2.2.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/esquery": "^1.0.2",
"@types/estraverse": "^5.1.2",
"esquery": "^1.4.0",
"preact": "^10.12.0",
"tslib": "^2.5.0",
"typescript": "^4.9.3",
"vite": "^4.1.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"estraverse": "^5.3.0"
}
}