-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "dsnp-spec",
"version": "1.2.0",
"description": "Detailed documentation regarding the current state of the protocol",
"license": "CC-BY-SA-4.0",
"files": [
"src/",
"pages/",
"tsconfig.json",
"package.json"
],
"scripts": {
"build": "mdbook build -o",
"serve": "mdbook serve -o",
"watch": "mdbook watch -o",
"spellcheck": "spellchecker",
"lint-md": "remark --frail ./pages/**/*.md ./pages/*.md",
"lint": "npm run lint-md && npm run spellcheck"
},
"devDependencies": {
"remark": "^15.0.1",
"remark-cli": "^12.0.0",
"remark-lint": "^9.1.2",
"remark-preset-lint-recommended": "^6.1.3",
"spellchecker-cli": "^6.1.1"
},
"engines": {
"node": ">=16.14.0"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended",
[
"remark-lint-list-item-indent",
false
]
]
}
}