-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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
{
"name": "jw-micromark-toolbox",
"version": "0.1.1",
"description": "jw-micromark-toolbox",
"license": "MIT",
"author": {
"name": "Jabberwocky238",
"email": "jabberwocky238@gmail.com",
"url": "https://github.com/Jabberwocky238"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jabberwocky238/jw-micromark-toolbox.git"
},
"keywords": [
"micromark",
"micromark-extension",
"markdown"
],
"sideEffects": false,
"main": "./lib/index.js",
"type": "module",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"exports": {
"default": "./lib/index.js"
},
"dependencies": {
"micromark-util-character": "^2.0.0",
"micromark-util-sanitize-uri": "^2.0.0",
"micromark-util-symbol": "^2.0.0",
"micromark-util-types": "^2.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"micromark": "^4.0.0",
"micromark-build": "^2.0.0",
"prettier": "^2.0.0",
"rehype": "^12.0.0",
"remark-cli": "^11.0.0",
"remark-preset-wooorm": "^9.0.0",
"typescript": "^5.0.0"
},
"scripts": {
"build": "tsc --build --clean && tsc && micromark-build",
"clean": "tsc --build --clean",
"format": "prettier --write .",
"test": "node test/index.js"
},
"prettier": {
"bracketSpacing": false,
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "none",
"useTabs": false
}
}