-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 2.61 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
106
107
108
109
{
"name": "@nasa-gcn/afm",
"version": "0.1.1",
"description": "Command-line tool to render Astro Flavored Markdown documents to JSON abstract syntax trees or HTML",
"files": [
"index.js"
],
"bin": {
"afm": "index.js"
},
"scripts": {
"prepare:husky": "husky",
"prepare:esbuild": "esbuild src/index.ts --bundle --packages=external --platform=neutral --outfile=index.js",
"prepare:tsc": "tsc",
"prepare": "run-p prepare:*"
},
"repository": {
"type": "git",
"url": "github:nasa-gcn/afm"
},
"license": "Apache-2.0",
"keywords": [],
"contributors": [
{
"name": "Dakota Dutko",
"email": "dakota.c.dutko@nasa.gov"
},
{
"name": "Leo Singer",
"email": "leo.p.singer@nasa.gov"
}
],
"dependencies": {
"@nasa-gcn/remark-rehype-astro": "^1.1.1",
"commander": "^12.0.0",
"rehype-format": "^4.0.0",
"rehype-stringify": "^9.0.0",
"remark-gfm": "^3.0.0",
"remark-parse": "^10.0.2",
"remark-rehype": "^10.1.0",
"unified": "^10.0.0",
"unist-util-remove-position": "^5.0.0"
},
"devDependencies": {
"@nasa-gcn/eslint-config-gitignore": "^0.0.2",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@tsconfig/node18": "^18.2.4",
"@types/mdast": "^4.0.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"cross-env": "^7.0.3",
"esbuild": "^0.24.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"glob": "^10.3.4",
"husky": "^9.1.0",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"prettier": "3.3.3",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18 <22"
},
"type": "module",
"sideEffects": false,
"prettier": {
"plugins": [
"@trivago/prettier-plugin-sort-imports"
],
"importOrder": [
"^[@a-zA-Z].*(?<!(?:css|gif|json|png|svg))$",
"^[.~/].*(?<!(?:css|gif|json|png|svg))$",
""
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"eslintConfig": {
"env": {
"es2019": true,
"node": true
},
"extends": [
"eslint:recommended",
"@nasa-gcn/eslint-config-gitignore",
"prettier"
],
"overrides": [
{
"files": "*.ts",
"extends": [
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
]
}
],
"parserOptions": {
"sourceType": "module"
}
}
}