-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
142 lines (142 loc) · 4.35 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "@blockqoute-playground/blk-material",
"version": "1.0.0-rc.1",
"description": "Webcomponent blk-material following open-wc recommendations",
"keywords": [
"lit",
"web-component",
"lit-element"
],
"license": "MIT",
"author": "blk-material",
"type": "module",
"exports": {
".": {
"default": "./index.js"
},
"./package.json": {
"default": "./package.json"
},
"./BlkMaterial.js": {
"default": "./src/BlkMaterial.js"
},
"./blk-material.js": {
"default": "./define/blk-material.js"
},
"./index.js": {
"default": "./index.js"
},
"./blk-material-styles.css.js": {
"default": "./src/styles/blk-material-styles.css.js"
}
},
"main": "index.js",
"module": "index.js",
"files": [
"/define/",
"/src/",
"index.js",
"!/**/*.scss"
],
"scripts": {
"analyze": "cem analyze --litelement --globs \"{src,define}/**/*.{js,ts}\" \"index.js\"",
"build": "echo \"This is not a TypeScript project, so no need to build.\"",
"dev:vite": "vite build",
"format": "npm run format:eslint && npm run format:prettier && npm run format:stylelint",
"format:eslint": "eslint . --fix",
"format:prettier": "prettier \"**/*.{js,ts,json,html}\" --write --ignore-path .prettierignore",
"format:stylelint": "stylelint \"**/*.{scss,css}\" --fix --allow-empty-input --ignore-path .prettierignore",
"postinstall": "npm run sort:package",
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:stylelint",
"lint:eslint": "eslint .",
"lint:prettier": "prettier \"**/*.{js,ts,json,html}\" --check --ignore-path .prettierignore",
"lint:stylelint": "stylelint \"**/*.{scss,css}\" --allow-empty-input --ignore-path .prettierignore",
"prepare": "husky",
"preview:vite": "vite preview",
"sass:watch": "sass-style-template",
"sort:package": "npx sort-package-json",
"start": "concurrently -k -r \"npm:sass:watch\" \"npm:vite\"",
"vite": "vite"
},
"lint-staged": {
"**/*.{js,ts,html}": [
"npm run format:eslint"
],
"**/*.{js,ts,json,html}": [
"npm run format:prettier"
],
"**/*.{scss,css}": [
"npm run format:stylelint"
]
},
"prettier": {
"bracketSameLine": true,
"bracketSpacing": false,
"htmlWhitespaceSensitivity": "ignore",
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5",
"overrides": [
{
"files": "*.{scss,css}",
"options": {
"printWidth": 280,
"singleQuote": false
}
}
]
},
"stylelint": {
"extends": "stylelint-config-standard-scss",
"rules": {
"custom-property-pattern": null,
"no-duplicate-selectors": null,
"color-function-notation": null,
"alpha-value-notation": null
}
},
"dependencies": {
"@blockquote-web-components/blockquote-controller-context-meta": "^1.1.8",
"@fluentui/tokens": "^1.0.0-alpha.18",
"@fluentui/web-components": "^3.0.0-beta.69",
"@material/web": "^2.2.0",
"lit": "^3.2.1"
},
"devDependencies": {
"@blockquote-web-components/blockquote-base-style-helpers": "^1.3.11",
"@blockquote/cem-to-markdown-readme": "^1.0.0",
"@blockquote/coverage-table-reporter": "^1.2.0",
"@blockquote/rollup-plugin-externalize-source-dependencies": "^1.0.0",
"@blockquote/rollup-plugin-total-bundlesize": "^2.1.2",
"@blockquote/sass-style-template": "^3.0.5",
"@custom-elements-manifest/analyzer": "^0.10.3",
"@html-eslint/eslint-plugin": "^0.27.0",
"@html-eslint/parser": "^0.27.0",
"@stylistic/eslint-plugin": "^2.10.1",
"@types/mocha": "^10.0.9",
"@web/rollup-plugin-html": "^2.3.0",
"concurrently": "^9.1.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-lit": "^1.15.0",
"eslint-plugin-lit-a11y": "^4.1.4",
"eslint-plugin-wc": "^2.2.0",
"fontaine": "^0.5.0",
"globals": "^15.12.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"playwright": "^1.48.2",
"prettier": "^3.3.3",
"sort-package-json": "^2.10.1",
"stylelint": "^16.10.0",
"stylelint-config-standard-scss": "^13.1.0",
"ts-lit-plugin": "^2.0.2",
"typescript-eslint": "^8.13.0",
"vite": "^5.4.10"
},
"publishConfig": {
"access": "public"
},
"customElements": "custom-elements.json"
}