-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.74 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@blockquote/create-wc",
"version": "1.108.0",
"description": "Web component with Lit scaffolding - Extending Open Web Component",
"keywords": [
"LitElement",
"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 --ext .ts,.js,.mjs,.cjs --fix && prettier \"**/*.{ts,js,mjs,cjs,md}\" --check --ignore-path .eslintignore --write",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint --ext .js,.mjs,.cjs .",
"lint:prettier": "prettier \"**/*.{js,mjs,cjs,md.json}\" --check --ignore-path .eslintignore",
"start": "node ./src/create.js"
},
"prettier": {
"bracketSameLine": true,
"htmlWhitespaceSensitivity": "ignore",
"singleQuote": true,
"bracketSpacing": false,
"trailingComma": "es5",
"printWidth": 100,
"overrides": [
{
"files": "*.{scss,css}",
"options": {
"printWidth": 280,
"singleQuote": false
}
}
]
},
"dependencies": {
"@open-wc/create": "^0.38.151",
"chalk": "^5.3.0",
"command-line-args": "^6.0.1",
"prompts": "^2.4.2",
"semver": "^7.6.3"
},
"devDependencies": {
"@open-wc/eslint-config": "^12.0.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3"
},
"engines": {
"node": ">=14.15.0"
},
"publishConfig": {
"access": "public"
}
}