forked from symbiotejs/symbiote.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.68 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.68 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"type": "module",
"name": "@symbiotejs/symbiote",
"version": "2.3.3",
"description": "Symbiote.js - close-to-platform frontend library for building super-powered web components",
"author": "symbiote.js@gmail.com",
"license": "MIT",
"scripts": {
"types": "rm -rf types && tsc -p dts.cfg.json"
},
"files": [
"core/*",
"utils/*",
"types/*",
"README.md",
"LICENSE"
],
"module": "./core/index.js",
"types": "./types/core/index.d.ts",
"exports": {
".": {
"types": "./types/core/index.d.ts",
"default": "./core/index.js"
},
"./core/Symbiote.js": {
"types": "./types/core/Symbiote.d.ts",
"default": "./core/Symbiote.js"
},
"./core/PubSub.js": {
"types": "./types/core/PubSub.d.ts",
"default": "./core/PubSub.js"
},
"./core/html.js": {
"types": "./types/core/html.d.ts",
"default": "./core/html.js"
},
"./core/css.js": {
"types": "./types/core/css.d.ts",
"default": "./core/css.js"
},
"./core/slotProcessor.js": {
"types": "./types/core/slotProcessor.d.ts",
"default": "./core/slotProcessor.js"
},
"./core/AppRouter.js": {
"types": "./types/core/AppRouter.d.ts",
"default": "./core/AppRouter.js"
},
"./utils/UID.js": {
"types": "./types/utils/UID.d.ts",
"default": "./utils/UID.js"
},
"./utils/setNestedProp.js": {
"types": "./types/utils/setNestedProp.d.ts",
"default": "./utils/setNestedProp.js"
},
"./utils/dom-helpers.js": {
"types": "./types/utils/dom-helpers.d.ts",
"default": "./utils/dom-helpers.js"
},
"./utils/kebabToCamel.js": {
"types": "./types/utils/kebabToCamel.d.ts",
"default": "./utils/kebabToCamel.js"
},
"./utils/reassignDictionary.js": {
"types": "./types/utils/reassignDictionary.d.ts",
"default": "./utils/reassignDictionary.js"
}
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/symbiotejs/symbiote.js/issues"
},
"homepage": "https://symbiotejs.org/",
"repository": {
"type": "git",
"url": "https://github.com/symbiotejs/symbiote.js.git"
},
"keywords": [
"web components",
"ui library",
"symbiote.js",
"symbiote",
"widget",
"microfrontends",
"meta application",
"frontend",
"typescript",
"javascript",
"custom elements",
"shadow dom",
"shadow root",
"constructable stylesheets",
"adopted stylesheets",
"css custom properties",
"pubsub",
"import maps",
"cdn imports",
"https imports",
"reactive html attributes",
"MIT"
],
"devDependencies": {
"typescript": "^5.4.5"
}
}