generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 850 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 850 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
{
"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",
"devDependencies": {
"sitemap": "^7.1.1",
"vitepress": "^1.0.2",
"vue": "^3.2.47"
},
"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
}
}
]
}
}