-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 885 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 885 Bytes
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
{
"type": "module",
"name": "runtype",
"version": "0.0.1",
"main": "index.js",
"repository": "git@github.com:vagebnd/runtype.git",
"author": "Gianluca Riggio <luca@maximumawesome.nl>",
"license": "MIT",
"packageManager": "yarn@1.22.22",
"devDependencies": {
"sitemap": "^8.0.0",
"vitepress": "^1.6.0",
"vue": "^3.5.0"
},
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs && cp docs/google9e68245e28ca1b36.html docs/.vitepress/dist",
"docs:preview": "vitepress preview docs"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"trailingComma": "all",
"singleQuote": true,
"semi": false,
"arrowParens": "always",
"quoteProps": "consistent",
"overrides": [
{
"files": "composer.json",
"options": {
"tabWidth": 4
}
}
]
}
}