generated from domdomegg/typescript-library-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "recma-mdx-displayname",
"version": "0.4.1",
"description": "Recma plugin to detect MDXContent elements in production",
"license": "MIT",
"author": "Adam Jones (domdomegg)",
"repository": {
"type": "git",
"url": "https://github.com/domdomegg/recma-mdx-displayname.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"pretest": "npm run build",
"prelint": "npm run build",
"test": "vitest run",
"test:watch": "vitest --watch",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"clean": "rm -rf dist",
"build": "tsc --project tsconfig.build.json",
"prepublishOnly": "npm run clean && npm run build"
},
"devDependencies": {
"@mdx-js/mdx": "^2.2.1",
"@tsconfig/node-lts": "^20.1.1",
"@tsconfig/strictest": "^2.0.2",
"@types/estree": "^1.0.0",
"eslint": "^8.56.0",
"eslint-config-domdomegg": "^1.2.3",
"typescript": "^5.3.3",
"unified": "^10.1.2",
"vfile": "^5.3.6",
"vitest": "^1.2.0"
},
"eslintConfig": {
"extends": [
"eslint-config-domdomegg"
]
}
}