-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "@ivteplo/html-sheet-element",
"description": "HTML Custom Element for Sheets",
"author": "Ivan Teplov <[email protected]>",
"keywords": [
"bottom-sheet",
"sheet",
"html",
"web-components-api",
"web-components",
"html-custom-element",
"cross-framework"
],
"license": "Apache-2.0",
"version": "2.1.0",
"type": "module",
"files": [
"build",
"documentation/*.md"
],
"main": "./build/index.umd.cjs",
"module": "./build/index.js",
"exports": {
".": {
"require": "./build/index.umd.cjs",
"import": "./build/index.js"
}
},
"scripts": {
"dev": "vite --config test/vite.config.js",
"build": "vite build --config vite.config.js",
"docs:api": "deno run -A https://raw.githubusercontent.com/ivteplo/deno-markdown-docs/v1.0.0-alpha/main.js ./library/index.js -o ./documentation/API.md"
},
"devDependencies": {
"vite": "^4.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivteplo/html-sheet-element.git",
"directory": "components/sheet"
},
"bugs": {
"url": "https://github.com/ivteplo/html-sheet-element/issues"
},
"homepage": "https://github.com/ivteplo/html-sheet-element#readme"
}