@lytjs/core 6.6.0 → 6.8.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/dist/index.cjs +6 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1556 -0
- package/dist/index.d.ts +1556 -0
- package/dist/index.mjs +6 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +63 -63
package/package.json
CHANGED
|
@@ -1,63 +1,63 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@lytjs/core",
|
|
3
|
-
"version": "6.
|
|
4
|
-
"description": "LytJS core - createApp, h, defineComponent, and plugin system",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.cjs",
|
|
7
|
-
"module": "./dist/index.mjs",
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"types": "./dist/index.d.ts",
|
|
12
|
-
"import": "./dist/index.mjs",
|
|
13
|
-
"require": "./dist/index.cjs"
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"files": [
|
|
17
|
-
"dist"
|
|
18
|
-
],
|
|
19
|
-
"sideEffects": false,
|
|
20
|
-
"scripts": {
|
|
21
|
-
"build": "tsup",
|
|
22
|
-
"dev": "tsup --watch",
|
|
23
|
-
"test": "vitest run",
|
|
24
|
-
"test:watch": "vitest",
|
|
25
|
-
"test:coverage": "vitest run --coverage",
|
|
26
|
-
"type-check": "tsc --noEmit",
|
|
27
|
-
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
28
|
-
"clean": "rm -rf dist"
|
|
29
|
-
},
|
|
30
|
-
"dependencies": {
|
|
31
|
-
"@lytjs/shared-types": "workspace:*",
|
|
32
|
-
"@lytjs/reactivity": "workspace:*",
|
|
33
|
-
"@lytjs/vdom": "workspace:*",
|
|
34
|
-
"@lytjs/compiler": "workspace:*",
|
|
35
|
-
"@lytjs/renderer": "workspace:*",
|
|
36
|
-
"@lytjs/component": "workspace:*",
|
|
37
|
-
"@lytjs/common-is": "workspace:*",
|
|
38
|
-
"@lytjs/common-string": "workspace:*",
|
|
39
|
-
"@lytjs/common-scheduler": "workspace:*",
|
|
40
|
-
"@lytjs/common-error": "workspace:*",
|
|
41
|
-
"@lytjs/common-object": "workspace:*"
|
|
42
|
-
},
|
|
43
|
-
"devDependencies": {
|
|
44
|
-
"tsup": "^8.0.0",
|
|
45
|
-
"typescript": "^5.4.0",
|
|
46
|
-
"vitest": "^1.6.0",
|
|
47
|
-
"jsdom": "^24.0.0"
|
|
48
|
-
},
|
|
49
|
-
"license": "MIT",
|
|
50
|
-
"repository": {
|
|
51
|
-
"type": "git",
|
|
52
|
-
"url": "https://gitee.com/lytjs/lytjs.git",
|
|
53
|
-
"directory": "packages/core"
|
|
54
|
-
},
|
|
55
|
-
"keywords": [
|
|
56
|
-
"lytjs",
|
|
57
|
-
"core",
|
|
58
|
-
"createApp",
|
|
59
|
-
"h",
|
|
60
|
-
"defineComponent",
|
|
61
|
-
"plugin"
|
|
62
|
-
]
|
|
63
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@lytjs/core",
|
|
3
|
+
"version": "6.8.0",
|
|
4
|
+
"description": "LytJS core - createApp, h, defineComponent, and plugin system",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.mjs",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.mjs",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsup",
|
|
22
|
+
"dev": "tsup --watch",
|
|
23
|
+
"test": "vitest run",
|
|
24
|
+
"test:watch": "vitest",
|
|
25
|
+
"test:coverage": "vitest run --coverage",
|
|
26
|
+
"type-check": "tsc --noEmit",
|
|
27
|
+
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
28
|
+
"clean": "rm -rf dist"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@lytjs/shared-types": "workspace:*",
|
|
32
|
+
"@lytjs/reactivity": "workspace:*",
|
|
33
|
+
"@lytjs/vdom": "workspace:*",
|
|
34
|
+
"@lytjs/compiler": "workspace:*",
|
|
35
|
+
"@lytjs/renderer": "workspace:*",
|
|
36
|
+
"@lytjs/component": "workspace:*",
|
|
37
|
+
"@lytjs/common-is": "workspace:*",
|
|
38
|
+
"@lytjs/common-string": "workspace:*",
|
|
39
|
+
"@lytjs/common-scheduler": "workspace:*",
|
|
40
|
+
"@lytjs/common-error": "workspace:*",
|
|
41
|
+
"@lytjs/common-object": "workspace:*"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"tsup": "^8.0.0",
|
|
45
|
+
"typescript": "^5.4.0",
|
|
46
|
+
"vitest": "^1.6.0",
|
|
47
|
+
"jsdom": "^24.0.0"
|
|
48
|
+
},
|
|
49
|
+
"license": "MIT",
|
|
50
|
+
"repository": {
|
|
51
|
+
"type": "git",
|
|
52
|
+
"url": "https://gitee.com/lytjs/lytjs.git",
|
|
53
|
+
"directory": "packages/core"
|
|
54
|
+
},
|
|
55
|
+
"keywords": [
|
|
56
|
+
"lytjs",
|
|
57
|
+
"core",
|
|
58
|
+
"createApp",
|
|
59
|
+
"h",
|
|
60
|
+
"defineComponent",
|
|
61
|
+
"plugin"
|
|
62
|
+
]
|
|
63
|
+
}
|