-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.57 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@blockquote/create-wc",
"version": "2.16.1",
"description": "Web component with Lit scaffolding - Extending Open Web Component",
"keywords": [
"Lit",
"web-component",
"sass",
"scaffold",
"vite",
"openwc",
"generator"
],
"homepage": "https://github.com/oscarmarina/create-wc",
"repository": {
"type": "git",
"url": "git+https://github.com/oscarmarina/create-wc.git"
},
"license": "MIT",
"author": "Oscar Marina",
"type": "module",
"bin": {
"create-blockquote-wc": "src/create.js"
},
"files": [
"/src/"
],
"scripts": {
"format": "eslint . --fix --no-config-lookup --config ./eslint.config.js && prettier \"**/*.{js,mjs,cjs,md,json}\" --write --ignore-path .prettierignore",
"start": "node ./src/create.js"
},
"prettier": {
"bracketSpacing": false,
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5",
"overrides": [
{
"files": "*.{scss,css}",
"options": {
"singleQuote": false
}
},
{
"files": "*.json",
"options": {
"parser": "json-stringify"
}
}
]
},
"dependencies": {
"@open-wc/create": "^0.38.151",
"chalk": "^6.0.0",
"command-line-args": "^6.0.2",
"prompts": "^2.4.2",
"semver": "^7.8.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@open-wc/eslint-config": "^13.1.0",
"eslint": "^10.9.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.11.0",
"prettier": "^3.9.6"
},
"publishConfig": {
"access": "public"
}
}