utils-lib-js 2.0.9 → 2.0.11

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/package.json CHANGED
@@ -1,49 +1,50 @@
1
- {
2
- "name": "utils-lib-js",
3
- "version": "2.0.9",
4
- "description": "JavaScript工具函数,封装的一些常用的js函数",
5
- "main": "./dist/cjs/index.js",
6
- "types": "./dist/cjs/index.d.ts",
7
- "module": "./dist/esm/index.js",
8
- "type":"module",
9
- "exports": {
10
- "import": "./dist/esm/index.js",
11
- "require": "./dist/cjs/index.js"
12
- },
13
- "scripts": {
14
- "debug": "start cmd /k pnpm run build:hot & pnpm run node:hot",
15
- "node:hot": "nodemon example.js --watch example.js",
16
- "build:hot": "pnpm rollup -c --watch",
17
- "build": "pnpm run rollup:build && pnpm run commonjs",
18
- "rollup:build": "rm -fr dist && pnpm rollup -c",
19
- "build:publish": "pnpm run build && pnpm publish",
20
- "commonjs": "cp ./commonjs.json dist/cjs/package.json"
21
- },
22
- "repository": {
23
- "type": "git",
24
- "url": "https://gitee.com/DieHunter/utils-lib-js.git"
25
- },
26
- "keywords": [
27
- "utils",
28
- "tools",
29
- "lib"
30
- ],
31
- "author": "",
32
- "license": "ISC",
33
- "devDependencies": {
34
- "@rollup/plugin-alias": "^4.0.3",
35
- "@rollup/plugin-node-resolve": "^15.0.1",
36
- "@rollup/plugin-typescript": "^11.0.0",
37
- "@types/node": "^18.7.15",
38
- "rollup": "^3.20.2",
39
- "rollup-plugin-terser": "^7.0.2",
40
- "tslib": "^2.5.0",
41
- "typescript": "^4.9.0"
42
- },
43
- "dependencies": {
44
- "event-message-center": "^1.3.2",
45
- "js-request-lib": "^1.0.7",
46
- "task-queue-lib": "^1.2.0"
47
- },
48
- "umdModuleName": "UtilsLib"
49
- }
1
+ {
2
+ "name": "utils-lib-js",
3
+ "version": "2.0.11",
4
+ "description": "JavaScript工具函数,封装的一些常用的js函数",
5
+ "main": "./dist/cjs/index.js",
6
+ "types": "./dist/cjs/index.d.ts",
7
+ "module": "./dist/esm/index.js",
8
+ "type": "module",
9
+ "exports": {
10
+ "import": "./dist/esm/index.js",
11
+ "require": "./dist/cjs/index.js"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://gitee.com/DieHunter/utils-lib-js.git"
16
+ },
17
+ "keywords": [
18
+ "utils",
19
+ "tools",
20
+ "lib"
21
+ ],
22
+ "author": "",
23
+ "license": "ISC",
24
+ "devDependencies": {
25
+ "@rollup/plugin-alias": "^4.0.3",
26
+ "@rollup/plugin-node-resolve": "^15.0.1",
27
+ "@rollup/plugin-typescript": "^11.0.0",
28
+ "@types/node": "^18.7.15",
29
+ "rollup": "^3.20.2",
30
+ "rollup-plugin-terser": "^7.0.2",
31
+ "tslib": "^2.5.0",
32
+ "typescript": "^4.9.0"
33
+ },
34
+ "dependencies": {
35
+ "event-message-center": "^1.3.2",
36
+ "js-request-lib": "^1.0.7",
37
+ "task-queue-lib": "^1.2.0",
38
+ "timer-manager-lib": "^1.0.0"
39
+ },
40
+ "umdModuleName": "UtilsLib",
41
+ "scripts": {
42
+ "debug": "start cmd /k pnpm run build:hot & pnpm run node:hot",
43
+ "node:hot": "nodemon example.js --watch example.js",
44
+ "build:hot": "pnpm rollup -c --watch",
45
+ "build": "pnpm run rollup:build && pnpm run commonjs",
46
+ "rollup:build": "rm -fr dist && pnpm rollup -c",
47
+ "build:publish": "pnpm run build && pnpm publish",
48
+ "commonjs": "cp ./commonjs.json dist/cjs/package.json"
49
+ }
50
+ }