-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 912 Bytes
/
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
{
"name": "@codin/mwc-grid",
"version": "0.1.2",
"description": "Element for highlighting code",
"keywords": [
"material design",
"grid",
"web component",
"lit-html",
"lit-element",
"layout"
],
"author": "Odin thomas Rochmann",
"license": "MIT",
"private": false,
"main": "lib/grid.js",
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/odinr/codin/packages/code-highlight/"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"lib"
],
"scripts": {
"prebuild": "npx sass2lit src",
"build": "tsc -b",
"prepack": "npx rollup -c ../rollup.config.js"
},
"peerDependencies": {
"lit-element": "2.3.x",
"lit-html": "1.2.x"
},
"dependencies": {
"@material/layout-grid": "^6.0.0"
},
"devDependencies": {
"@codin/util-sass2lit": "^1.0.5"
}
}