-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 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
43
44
45
46
47
48
49
50
51
{
"name": "@ivteplo/html-sheet-element",
"description": "HTML Custom Element for Sheets",
"author": "Ivan Teplov <iteplov7@gmail.com>",
"keywords": [
"bottom-sheet",
"sheet",
"html",
"web-components-api",
"web-components",
"html-custom-element",
"cross-framework"
],
"license": "Apache-2.0",
"version": "2.1.4",
"type": "module",
"files": [
"build",
"documentation/*.md"
],
"main": "./build/index.umd.cjs",
"module": "./build/index.js",
"types": "./build/index.d.ts",
"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",
"prepare": "husky"
},
"devDependencies": {
"husky": "^9.1.7",
"typescript": "^5.9.2",
"vite": "^7.1.4",
"vite-plugin-dts": "^4.5.4"
},
"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"
}