-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.01 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
{
"name": "bit-grid-component",
"version": "0.4.0",
"description": "Framework-agnostic web component for boolean matrices - edit and display 2D boolean arrays with interactive cell selection",
"type": "module",
"main": "BitGrid.js",
"exports": {
".": "./BitGrid.js"
},
"files": [
"BitGrid.js",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "cd docs && npm run dev -- --host",
"docs:dev": "cd docs && npm run dev",
"docs:build": "cd docs && npm run build"
},
"keywords": [
"web-component",
"bit-grid",
"boolean-grid",
"interactive-grid",
"drag-selection",
"framework-agnostic",
"vanilla-js",
"css-variables",
"accessible",
"responsive"
],
"author": "Metaory",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/metaory/bit-grid-component.git"
},
"bugs": {
"url": "https://github.com/metaory/bit-grid-component/issues"
},
"homepage": "https://github.com/metaory/bit-grid-component#readme"
}