hyperscript-rxjs 1.3.0 → 1.3.1
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/hyperscript-rxjs.d.ts +1253 -0
- package/dist/hyperscript-rxjs.js +1 -1
- package/dist/tsdoc-metadata.json +11 -0
- package/package.json +19 -13
- package/readme.md +0 -4
@@ -0,0 +1,11 @@
|
|
1
|
+
// This file is read by tools that parse documentation comments conforming to the TSDoc standard.
|
2
|
+
// It should be published with your NPM package. It should not be tracked by Git.
|
3
|
+
{
|
4
|
+
"tsdocVersion": "0.12",
|
5
|
+
"toolPackages": [
|
6
|
+
{
|
7
|
+
"packageName": "@microsoft/api-extractor",
|
8
|
+
"packageVersion": "7.52.8"
|
9
|
+
}
|
10
|
+
]
|
11
|
+
}
|
package/package.json
CHANGED
@@ -1,41 +1,47 @@
|
|
1
1
|
{
|
2
|
-
"dependencies": {},
|
3
2
|
"devDependencies": {
|
4
|
-
"rxjs": "7.8.2",
|
5
|
-
"jest": "29.7.0",
|
6
|
-
"jsdom": "26.1.0",
|
7
|
-
"jest-environment-jsdom": "29.7.0",
|
8
|
-
"node-fetch": "3.3.2",
|
9
|
-
"babel-jest": "29.7.0",
|
10
3
|
"@babel/core": "7.27.1",
|
11
4
|
"@babel/preset-env": "7.27.2",
|
12
|
-
"@
|
13
|
-
"@babel/plugin-proposal-export-namespace-from": "7.18.9",
|
5
|
+
"@microsoft/api-extractor": "7.52.8",
|
14
6
|
"@webpack-cli/serve": "3.0.1",
|
7
|
+
"babel-jest": "29.7.0",
|
15
8
|
"babel-loader": "10.0.0",
|
16
9
|
"clean-webpack-plugin": "4.0.0",
|
17
10
|
"core-js": "3.42.0",
|
11
|
+
"jest": "29.7.0",
|
12
|
+
"jest-environment-jsdom": "29.7.0",
|
13
|
+
"jsdom": "26.1.0",
|
14
|
+
"node-fetch": "3.3.2",
|
18
15
|
"regenerator-runtime": "0.14.1",
|
16
|
+
"rxjs": "7.8.2",
|
19
17
|
"tslib": "2.8.1",
|
18
|
+
"typescript": "5.8.3",
|
20
19
|
"webpack": "5.99.8",
|
21
20
|
"webpack-cli": "6.0.1",
|
22
21
|
"webpack-dev-server": "5.2.1",
|
23
22
|
"webpack-merge": "6.0.1"
|
24
23
|
},
|
25
24
|
"jest": {
|
26
|
-
"testEnvironment": "jsdom"
|
25
|
+
"testEnvironment": "jsdom",
|
26
|
+
"transform": {
|
27
|
+
"^.+\\.jsx?$": "babel-jest"
|
28
|
+
},
|
29
|
+
"transformIgnorePatterns": [
|
30
|
+
"/node_modules/(?!rxjs)"
|
31
|
+
]
|
27
32
|
},
|
28
33
|
"scripts": {
|
29
34
|
"build": "webpack --config webpack.prod.js",
|
30
35
|
"start": "webpack serve --config webpack.dev.js",
|
31
36
|
"test": "jest",
|
32
|
-
"
|
33
|
-
"
|
37
|
+
"dts:build": "tsc",
|
38
|
+
"dts:extract": "api-extractor run --local"
|
34
39
|
},
|
35
40
|
"name": "hyperscript-rxjs",
|
36
41
|
"description": "A js UI library that uses rxjs to handle dom directly.",
|
37
42
|
"main": "dist/hyperscript-rxjs.js",
|
38
|
-
"
|
43
|
+
"types": "dist/hyperscript-rxjs.d.ts",
|
44
|
+
"version": "1.3.1",
|
39
45
|
"author": "cuishengli<34696643@qq.com>",
|
40
46
|
"keywords": [
|
41
47
|
"ui",
|
package/readme.md
CHANGED