-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1010 Bytes
/
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
{
"name": "frequency-docs",
"version": "0.0.1",
"description": "Detailed documentation for Frequency",
"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",
"mdbook:install": "cargo install mdbook",
"lint:spellcheck": "spellchecker",
"lint:md": "remark --frail ./pages/**/*.md ./pages/*.md",
"lint": "npm run lint:md && npm run lint:spellcheck"
},
"devDependencies": {
"@frequency-chain/style-guide": "^0.1.22",
"remark": "^15.0.1",
"remark-cli": "^12.0.1",
"remark-lint": "^10.0.0",
"remark-preset-lint-recommended": "^7.0.0",
"spellchecker-cli": "^7.0.0",
"tailwindcss": "^3.4.15"
},
"engines": {
"node": ">=20"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended",
[
"remark-lint-list-item-indent",
false
]
]
}
}