@lentystyle/core 0.1.0
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/CHANGELOG.md +13 -0
- package/CHANGELOG.tr.md +13 -0
- package/CODE_OF_CONDUCT.md +42 -0
- package/CODE_OF_CONDUCT.tr.md +41 -0
- package/CONTRIBUTING.md +53 -0
- package/CONTRIBUTING.tr.md +50 -0
- package/LICENSE.md +281 -0
- package/LICENSE.tr.md +280 -0
- package/README.md +139 -0
- package/README.tr.md +136 -0
- package/SECURITY.md +33 -0
- package/SECURITY.tr.md +32 -0
- package/dist/compiler/imports/chars.min.cjs +2 -0
- package/dist/compiler/imports/chars.min.js +2 -0
- package/dist/compiler/imports/classify.min.cjs +2 -0
- package/dist/compiler/imports/classify.min.js +2 -0
- package/dist/compiler/imports/scan.min.cjs +3 -0
- package/dist/compiler/imports/scan.min.js +3 -0
- package/dist/compiler/incremental.min.cjs +73 -0
- package/dist/compiler/incremental.min.js +73 -0
- package/dist/compiler/index.min.cjs +67 -0
- package/dist/compiler/index.min.js +67 -0
- package/dist/compiler/profile.min.cjs +2 -0
- package/dist/compiler/profile.min.js +2 -0
- package/dist/compiler/renderer.min.cjs +8 -0
- package/dist/compiler/renderer.min.js +8 -0
- package/dist/compiler/resource-limits.min.cjs +1 -0
- package/dist/compiler/resource-limits.min.js +1 -0
- package/dist/compiler/security/guard.min.cjs +1 -0
- package/dist/compiler/security/guard.min.js +1 -0
- package/dist/compiler/variables/array-variable.min.cjs +1 -0
- package/dist/compiler/variables/array-variable.min.js +1 -0
- package/dist/config.min.cjs +1 -0
- package/dist/config.min.js +1 -0
- package/dist/guard/hybrid.min.cjs +2 -0
- package/dist/guard/hybrid.min.js +2 -0
- package/dist/guard/runtime.min.cjs +1 -0
- package/dist/guard/runtime.min.js +1 -0
- package/dist/guard/shared.min.cjs +1 -0
- package/dist/guard/shared.min.js +1 -0
- package/dist/guard/ssr.min.cjs +2 -0
- package/dist/guard/ssr.min.js +2 -0
- package/dist/index.min.cjs +103 -0
- package/dist/index.min.js +103 -0
- package/dist/runtime/diagnostics.min.cjs +1 -0
- package/dist/runtime/diagnostics.min.js +1 -0
- package/dist/runtime/features.min.cjs +2 -0
- package/dist/runtime/features.min.js +2 -0
- package/dist/runtime/index.min.cjs +103 -0
- package/dist/runtime/index.min.js +103 -0
- package/dist/runtime/lentystyle.compile.worker.min.js +83 -0
- package/dist/runtime/lentystyle.debug.min.js +4 -0
- package/dist/runtime/lentystyle.integrity.json +12 -0
- package/dist/runtime/lentystyle.lazy.min.js +1 -0
- package/dist/runtime/lentystyle.log-critical.min.js +1 -0
- package/dist/runtime/lentystyle.log-optional.min.js +1 -0
- package/dist/runtime/lentystyle.map.min.js +4 -0
- package/dist/runtime/lentystyle.min.js +103 -0
- package/dist/runtime/lentystyle.observed.min.js +9 -0
- package/dist/runtime/lentystyle.performance.min.js +1 -0
- package/dist/runtime/lentystyle.worker.min.js +2 -0
- package/dist/runtime/options.min.cjs +1 -0
- package/dist/runtime/options.min.js +1 -0
- package/dist/runtime/style-sheet.min.cjs +1 -0
- package/dist/runtime/style-sheet.min.js +1 -0
- package/dist/types/compiler/compiler/index.d.ts +4 -0
- package/dist/types/compiler/compiler/render/collect-leaves.d.ts +3 -0
- package/dist/types/compiler/compiler/render/index.d.ts +3 -0
- package/dist/types/compiler/compiler/render/render-buckets.d.ts +3 -0
- package/dist/types/compiler/compiler/render/types.d.ts +13 -0
- package/dist/types/compiler/compiler/renderer.d.ts +5 -0
- package/dist/types/compiler/compiler/resource-limits.d.ts +21 -0
- package/dist/types/compiler/compiler/types.d.ts +82 -0
- package/dist/types/compiler/index.d.ts +2 -0
- package/dist/types/compiler/reader.d.ts +5 -0
- package/dist/types/compiler/renderer.d.ts +1 -0
- package/dist/types/config.d.ts +14 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/runtime/diagnostics.d.ts +1 -0
- package/dist/types/runtime/features.d.ts +1 -0
- package/dist/types/runtime/index.d.ts +4 -0
- package/dist/types/runtime/options.d.ts +12 -0
- package/dist/types/runtime/runtime/features/assets.d.ts +3 -0
- package/dist/types/runtime/runtime/features/index.d.ts +5 -0
- package/dist/types/runtime/runtime/features/loader.d.ts +2 -0
- package/dist/types/runtime/runtime/features/performance-types.d.ts +39 -0
- package/dist/types/runtime/runtime/features/registry.d.ts +4 -0
- package/dist/types/runtime/runtime/features/types.d.ts +109 -0
- package/dist/types/runtime/runtime/loader/context-time.d.ts +2 -0
- package/dist/types/runtime/runtime/loader/context-types.d.ts +19 -0
- package/dist/types/runtime/runtime/loader/context.d.ts +18 -0
- package/dist/types/runtime/runtime/loader/options.d.ts +8 -0
- package/dist/types/runtime/runtime/loader/process/import-resolver/types.d.ts +12 -0
- package/dist/types/runtime/runtime/loader/process/types.d.ts +25 -0
- package/dist/types/runtime/runtime/style-sheet/cache.d.ts +6 -0
- package/dist/types/runtime/runtime/style-sheet.d.ts +7 -0
- package/dist/types/runtime/runtime/stylesheet-links/auto-loader.d.ts +7 -0
- package/dist/types/runtime/runtime/stylesheet-links/dom-compile.d.ts +9 -0
- package/dist/types/runtime/runtime/stylesheet-links.d.ts +2 -0
- package/dist/types/runtime/style-sheet.d.ts +1 -0
- package/dist/types/runtime/style.d.ts +2 -0
- package/package.json +117 -0
package/package.json
ADDED
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@lentystyle/core",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "LentyStyle closed core package for compiler, runtime, and guard surfaces",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "UNLICENSED",
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"access": "public"
|
|
9
|
+
},
|
|
10
|
+
"sideEffects": false,
|
|
11
|
+
"main": "./dist/index.min.cjs",
|
|
12
|
+
"module": "./dist/index.min.js",
|
|
13
|
+
"types": "./dist/types/index.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"types": "./dist/types/index.d.ts",
|
|
17
|
+
"import": "./dist/index.min.js",
|
|
18
|
+
"require": "./dist/index.min.cjs",
|
|
19
|
+
"default": "./dist/index.min.js"
|
|
20
|
+
},
|
|
21
|
+
"./config": {
|
|
22
|
+
"types": "./dist/types/config.d.ts",
|
|
23
|
+
"import": "./dist/config.min.js",
|
|
24
|
+
"require": "./dist/config.min.cjs",
|
|
25
|
+
"default": "./dist/config.min.js"
|
|
26
|
+
},
|
|
27
|
+
"./compiler": {
|
|
28
|
+
"types": "./dist/types/compiler/index.d.ts",
|
|
29
|
+
"import": "./dist/compiler/index.min.js",
|
|
30
|
+
"require": "./dist/compiler/index.min.cjs",
|
|
31
|
+
"default": "./dist/compiler/index.min.js"
|
|
32
|
+
},
|
|
33
|
+
"./compiler/renderer": {
|
|
34
|
+
"types": "./dist/types/compiler/renderer.d.ts",
|
|
35
|
+
"import": "./dist/compiler/renderer.min.js",
|
|
36
|
+
"require": "./dist/compiler/renderer.min.cjs",
|
|
37
|
+
"default": "./dist/compiler/renderer.min.js"
|
|
38
|
+
},
|
|
39
|
+
"./runtime": {
|
|
40
|
+
"types": "./dist/types/runtime/index.d.ts",
|
|
41
|
+
"import": "./dist/runtime/index.min.js",
|
|
42
|
+
"require": "./dist/runtime/index.min.cjs",
|
|
43
|
+
"default": "./dist/runtime/index.min.js"
|
|
44
|
+
},
|
|
45
|
+
"./runtime/style-sheet": {
|
|
46
|
+
"types": "./dist/types/runtime/style-sheet.d.ts",
|
|
47
|
+
"import": "./dist/runtime/style-sheet.min.js",
|
|
48
|
+
"require": "./dist/runtime/style-sheet.min.cjs",
|
|
49
|
+
"default": "./dist/runtime/style-sheet.min.js"
|
|
50
|
+
},
|
|
51
|
+
"./runtime/features": {
|
|
52
|
+
"types": "./dist/types/runtime/features.d.ts",
|
|
53
|
+
"import": "./dist/runtime/features.min.js",
|
|
54
|
+
"require": "./dist/runtime/features.min.cjs",
|
|
55
|
+
"default": "./dist/runtime/features.min.js"
|
|
56
|
+
},
|
|
57
|
+
"./runtime/options": {
|
|
58
|
+
"types": "./dist/types/runtime/options.d.ts",
|
|
59
|
+
"import": "./dist/runtime/options.min.js",
|
|
60
|
+
"require": "./dist/runtime/options.min.cjs",
|
|
61
|
+
"default": "./dist/runtime/options.min.js"
|
|
62
|
+
},
|
|
63
|
+
"./runtime/diagnostics": {
|
|
64
|
+
"types": "./dist/types/runtime/diagnostics.d.ts",
|
|
65
|
+
"import": "./dist/runtime/diagnostics.min.js",
|
|
66
|
+
"require": "./dist/runtime/diagnostics.min.cjs",
|
|
67
|
+
"default": "./dist/runtime/diagnostics.min.js"
|
|
68
|
+
},
|
|
69
|
+
"./guard/runtime": {
|
|
70
|
+
"import": "./dist/guard/runtime.min.js",
|
|
71
|
+
"require": "./dist/guard/runtime.min.cjs",
|
|
72
|
+
"default": "./dist/guard/runtime.min.js"
|
|
73
|
+
},
|
|
74
|
+
"./guard/shared": {
|
|
75
|
+
"import": "./dist/guard/shared.min.js",
|
|
76
|
+
"require": "./dist/guard/shared.min.cjs",
|
|
77
|
+
"default": "./dist/guard/shared.min.js"
|
|
78
|
+
},
|
|
79
|
+
"./guard/hybrid": {
|
|
80
|
+
"import": "./dist/guard/hybrid.min.js",
|
|
81
|
+
"require": "./dist/guard/hybrid.min.cjs",
|
|
82
|
+
"default": "./dist/guard/hybrid.min.js"
|
|
83
|
+
},
|
|
84
|
+
"./guard/ssr": {
|
|
85
|
+
"import": "./dist/guard/ssr.min.js",
|
|
86
|
+
"require": "./dist/guard/ssr.min.cjs",
|
|
87
|
+
"default": "./dist/guard/ssr.min.js"
|
|
88
|
+
},
|
|
89
|
+
"./runtime/lentystyle.min.js": "./dist/runtime/lentystyle.min.js",
|
|
90
|
+
"./runtime/lentystyle.debug.min.js": "./dist/runtime/lentystyle.debug.min.js",
|
|
91
|
+
"./runtime/lentystyle.performance.min.js": "./dist/runtime/lentystyle.performance.min.js",
|
|
92
|
+
"./runtime/lentystyle.map.min.js": "./dist/runtime/lentystyle.map.min.js",
|
|
93
|
+
"./runtime/lentystyle.lazy.min.js": "./dist/runtime/lentystyle.lazy.min.js",
|
|
94
|
+
"./runtime/lentystyle.observed.min.js": "./dist/runtime/lentystyle.observed.min.js",
|
|
95
|
+
"./runtime/lentystyle.worker.min.js": "./dist/runtime/lentystyle.worker.min.js",
|
|
96
|
+
"./runtime/lentystyle.compile.worker.min.js": "./dist/runtime/lentystyle.compile.worker.min.js",
|
|
97
|
+
"./runtime/lentystyle.log-critical.min.js": "./dist/runtime/lentystyle.log-critical.min.js",
|
|
98
|
+
"./runtime/lentystyle.log-optional.min.js": "./dist/runtime/lentystyle.log-optional.min.js",
|
|
99
|
+
"./runtime/lentystyle.integrity.json": "./dist/runtime/lentystyle.integrity.json",
|
|
100
|
+
"./package.json": "./package.json"
|
|
101
|
+
},
|
|
102
|
+
"files": [
|
|
103
|
+
"dist",
|
|
104
|
+
"README.md",
|
|
105
|
+
"README.tr.md",
|
|
106
|
+
"LICENSE.md",
|
|
107
|
+
"LICENSE.tr.md",
|
|
108
|
+
"CHANGELOG.md",
|
|
109
|
+
"CHANGELOG.tr.md",
|
|
110
|
+
"CONTRIBUTING.md",
|
|
111
|
+
"CONTRIBUTING.tr.md",
|
|
112
|
+
"CODE_OF_CONDUCT.md",
|
|
113
|
+
"CODE_OF_CONDUCT.tr.md",
|
|
114
|
+
"SECURITY.md",
|
|
115
|
+
"SECURITY.tr.md"
|
|
116
|
+
]
|
|
117
|
+
}
|