-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
53 lines (53 loc) · 1.67 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
{
"name": "docs.nativescript.org",
"private": true,
"version": "1.0.0",
"scripts": {
"prepare": "patch-package",
"postinstall": "patch-package",
"dev": "vitepress dev",
"build": "vitepress build",
"preview": "vitepress preview",
"lint": "npm-run-all lint:*",
"fix": "npm-run-all fix:*",
"fix:format": "prettier --write ./content/**/*.md",
"fix:examples": "prettier --write ./examples/**/*.{html,css,js,ts,tsx,jsx,svelte}",
"fix:text": "textlint ./content/**/*.md --fix",
"lint:format": "prettier --check ./content/**/*.md",
"lint:text": "textlint ./content/**/*.md",
"scrape.plugins": "zx ./scripts/plugin-scraper.mjs && prettier --write ./content/plugins/*.md && prettier --write ./content/plugins/*.md",
"update-theme": "node ./.vitepress/update-theme.mjs"
},
"devDependencies": {
"@nativescript/vitepress-theme": "https://docs.nativescript.org/__/vitepress-theme.tgz?1741004879845",
"@types/node": "18.11.9",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"sitemap": "^7.1.1",
"svelte": "4",
"textlint": "^13.3.3",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-terminology": "^3.0.5",
"vitepress": "1.6.3",
"zx": "^6.2.5"
},
"prettier": {
"plugins": [
"prettier-plugin-svelte"
],
"semi": false,
"printWidth": 80,
"singleQuote": true,
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
},
"packageManager": "yarn@1.22.19+sha256.732620bac8b1690d507274f025f3c6cfdc3627a84d9642e38a07452cc00e0f2e"
}