-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.47 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.47 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "typed-custom-elements",
"description": "TypeScript types for building type-safe Web Components with proper type checking for custom elements.",
"version": "0.0.3",
"type": "module",
"license": "MIT-0",
"repository": "https://github.com/jsxtools/typed-custom-elements",
"bugs": "https://github.com/jsxtools/typed-custom-elements/issues",
"exports": {
".": "./typed-custom-elements.js",
"./CustomElement": "./CustomElement.js",
"./CustomElementConstructor": "./CustomElementConstructor.js",
"./CustomElementRegistry": "./CustomElementRegistry.js"
},
"main": "typed-custom-elements.js",
"types": "typed-custom-elements.d.ts",
"files": [
"CustomElement.d.ts",
"CustomElement.js",
"CustomElementConstructor.d.ts",
"CustomElementConstructor.js",
"CustomElementRegistry.d.ts",
"CustomElementRegistry.js",
"typed-custom-elements.d.ts",
"typed-custom-elements.js"
],
"sideEffects": false,
"keywords": [
"component",
"components",
"construct",
"constructable",
"constructed",
"custom",
"custom-element",
"custom-elements",
"definition",
"defintiions",
"dom",
"element",
"elements",
"html",
"htmlelement",
"htmlelements",
"javascript",
"js",
"ts",
"type",
"types",
"typescript",
"web",
"web-components"
],
"devDependencies": {
"typescript": "5.8.3",
"tsd": "0.32.0"
},
"scripts": {
"check": "tsc",
"test": "tsd --typings typed-custom-elements.d.ts"
}
}