@glint/template 1.4.1-unstable.ee13f9d → 1.4.1-unstable.ef8ea8b
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/-private/dsl/elements.d.ts +4274 -0
- package/-private/dsl/emit.d.ts +26 -4
- package/-private/dsl/lib.dom.augmentation.d.ts +637 -0
- package/-private/dsl/types.d.ts +26 -6
- package/package.json +17 -2
package/package.json
CHANGED
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@glint/template",
|
|
3
|
-
"version": "1.4.1-unstable.
|
|
3
|
+
"version": "1.4.1-unstable.ef8ea8b",
|
|
4
4
|
"repository": "typed-ember/glint",
|
|
5
5
|
"description": "Type definitions to back typechecking for Glimmer templates",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Dan Freeman (https://github.com/dfreeman)",
|
|
8
8
|
"types": "-private/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./-private/index.d.ts"
|
|
12
|
+
},
|
|
13
|
+
"./*": {
|
|
14
|
+
"types": "./*.d.ts"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
9
17
|
"scripts": {
|
|
10
18
|
"test": "echo 'no standalone tests within this project'",
|
|
11
19
|
"test:typecheck": "tsc --project __tests__",
|
|
@@ -19,7 +27,14 @@
|
|
|
19
27
|
"devDependencies": {
|
|
20
28
|
"@glimmer/component": "^1.1.2",
|
|
21
29
|
"expect-type": "^0.15.0",
|
|
22
|
-
"sums-up": "^2.1.0"
|
|
30
|
+
"sums-up": "^2.1.0",
|
|
31
|
+
"ember-source": "^6.2.0",
|
|
32
|
+
"typescript": ">=5.6.0",
|
|
33
|
+
"aria-attributes": "^2.0.1",
|
|
34
|
+
"html-element-attributes": "^3.3.0",
|
|
35
|
+
"html-event-attributes": "^2.2.0",
|
|
36
|
+
"svg-element-attributes": "^2.1.0",
|
|
37
|
+
"svg-event-attributes": "^2.0.2"
|
|
23
38
|
},
|
|
24
39
|
"publishConfig": {
|
|
25
40
|
"access": "public"
|