-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.09 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@glare-labs/hitman-dialog",
"version": "0.0.1",
"description": "A hitman style dialog web component, built by lit.",
"author": "glare-labs",
"license": "MIT",
"keywords": [
"web-component",
"dialog",
"ui",
"hitman"
],
"homepage": "https://github.com/glare-labs//hitman-dialog",
"bugs": {
"url": "https://github.com/glare-labs/hitman-dialog/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/glare-labs//hitman-dialog.git"
},
"type": "module",
"main": "build/index.js",
"module": "build/index.js",
"files": [
"build/**/*"
],
"exports": {
".": {
"import": "./build/index.js",
"require": "./build/index.js",
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"./*": {
"import": "./*.js",
"require": "./*.js",
"types": "./index.d.ts",
"default": "./*.js"
},
"./hitman-dialog": {
"import": "./*.js",
"require": "./*.js",
"types": "./dialog/hitman-dialog.d.ts",
"default": "./*.js"
},
"./hitman-dialog-button": {
"import": "./*.js",
"require": "./*.js",
"types": "./dialog-button/hitman-dialog-button.d.ts",
"default": "./*.js"
}
},
"types": "build/index.d.ts",
"typings": "build/index.d.ts",
"scripts": {
"compile": "wireit",
"dev": "wireit",
"build-dev-app": "wireit"
},
"workspaces": [
"dev-app"
],
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"lit": "^3.2.0",
"rollup": "^3.29.5",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"wireit": "^0.14.9"
},
"wireit": {
"compile": {
"command": "npx rollup --config",
"output": [
"build/**/*"
],
"files": [
"dialog/**/*",
"dialog-header/**/*",
"dialog-button/**/*",
"internal/**/*"
]
},
"dev": {
"command": "npm run dev -w dev-app"
},
"build-dev-app": {
"command": "npm run build -w dev-app"
}
}
}