-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.23 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
{
"name": "@helmturner/recma-next-static-images",
"version": "1.1.0",
"type": "module",
"licenses": [
{
"type": "ISC",
"url": "https://opensource.org/licenses/ISC"
}
],
"engines": {
"node": ">=14.16"
},
"description": "recma plugin to make @mdx-js/loader play nice with @next/image for static pages",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint --ext .js,.ts ./",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && npm run lint && npm pack",
"prepublishOnly": "yarn run build",
"publishUnstable": "npm publish --tag unstable",
"publish": "npm publish"
},
"eslintConfig": {
"env": {
"es2020": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"plugins": [
"unicorn",
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:unicorn/recommended"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/alecvision/recma-next-static-images.git"
},
"keywords": [
"unified",
"recma",
"esast",
"estree",
"plugin",
"markdown",
"mdx",
"next",
"image",
"ast"
],
"author": "Alec Helmturner <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/alecvision/recma-next-static-images/issues"
},
"homepage": "https://github.com/alecvision/recma-next-static-images#readme",
"devDependencies": {
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-plugin-unicorn": "^43.0.0",
"typescript": "^4.7.4",
"unified": "^10.1.2"
},
"dependencies": {
"estree-util-visit": "^1.2.0",
"node-fetch": "^3.2.10",
"unist-util-is": "^5.1.1"
},
"files": [
"dist"
]
}