-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 886 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
{
"name": "@solb/bottom-sheet",
"version": "1.0.0",
"description": "This is a bottomsheet created with pure JavaScript using Web Components.",
"repository": {
"type": "git",
"url": "git+https://github.com/y-solb/bottom-sheet"
},
"keywords": [
"javascript",
"typescript",
"bottomsheet",
"bottom-sheet",
"modal",
"customElements",
"Web Components"
],
"author": "Yoon Solbi (https://sollogging.tistory.com/)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepack": "yarn build",
"build": "yarn clean && yarn build:tsc",
"build:tsc": "yarn tsc",
"clean": "rm -rf dist"
},
"license": "MIT",
"packageManager": "yarn@3.2.4",
"devDependencies": {
"@types/node": "^20.10.4",
"typescript": "^5.3.3"
},
"bugs": "https://github.com/y-solb/bottom-sheet/issues"
}