@widget-js/core 0.5.24 → 0.5.25
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 +63 -64
package/package.json
CHANGED
|
@@ -1,64 +1,63 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@widget-js/core",
|
|
3
|
-
"version": "0.5.
|
|
4
|
-
"description": "",
|
|
5
|
-
"publishConfig": {
|
|
6
|
-
"access": "public"
|
|
7
|
-
},
|
|
8
|
-
"umd:main": "dist/umd/index.js",
|
|
9
|
-
"types": "dist/types/index.d.ts",
|
|
10
|
-
"main": "dist/cjs/index.js",
|
|
11
|
-
"module": "dist/esm/index.js",
|
|
12
|
-
"scripts": {
|
|
13
|
-
"
|
|
14
|
-
"test": "jest --no-cache --runInBand",
|
|
15
|
-
"
|
|
16
|
-
"build": "npm run build
|
|
17
|
-
"build:
|
|
18
|
-
"build:
|
|
19
|
-
"build:
|
|
20
|
-
"build:
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
"
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"@babel/
|
|
42
|
-
"@babel/
|
|
43
|
-
"@babel/
|
|
44
|
-
"@
|
|
45
|
-
"@types/
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"ts-
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"webpack": "^5.
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
"
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@widget-js/core",
|
|
3
|
+
"version": "0.5.25",
|
|
4
|
+
"description": "",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"umd:main": "dist/umd/index.js",
|
|
9
|
+
"types": "dist/types/index.d.ts",
|
|
10
|
+
"main": "dist/cjs/index.js",
|
|
11
|
+
"module": "dist/esm/index.js",
|
|
12
|
+
"scripts": {
|
|
13
|
+
"test": "jest --no-cache --runInBand",
|
|
14
|
+
"test:cov": "jest --coverage --no-cache --runInBand",
|
|
15
|
+
"build": "npm run build:esm && npm run build:types && npm run build:cjs && npm run build:umd",
|
|
16
|
+
"build:update": "npm run build && yarn --cwd ../../../ upgrade @widget-js/core && yarn --cwd ../../../electron upgrade @widget-js/core",
|
|
17
|
+
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
|
|
18
|
+
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
|
|
19
|
+
"build:umd": "node tools/cleanup umd && webpack --config config/webpack.config.js",
|
|
20
|
+
"build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json",
|
|
21
|
+
"postbuild": "rimraf ../../electron/node_modules/@widget-js/core/",
|
|
22
|
+
"package": "npm run build && npm pack",
|
|
23
|
+
"addscope": "node tools/packagejson name @widget-js/core",
|
|
24
|
+
"publish": "npm publish --no-git-checks"
|
|
25
|
+
},
|
|
26
|
+
"author": "Neo Fu <rtugeek@gmail.com>",
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"homepage": "https://github.com/widom-widget/core",
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "https://github.com/widom-widget/core.git"
|
|
32
|
+
},
|
|
33
|
+
"bugs": {
|
|
34
|
+
"url": "https://github.com/widom-widget/core/issues"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"dist"
|
|
38
|
+
],
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@babel/cli": "^7.19.3",
|
|
41
|
+
"@babel/core": "^7.20.2",
|
|
42
|
+
"@babel/node": "^7.20.2",
|
|
43
|
+
"@babel/preset-env": "^7.20.2",
|
|
44
|
+
"@types/jest": "^29.2.3",
|
|
45
|
+
"@types/urijs": "^1.19.19",
|
|
46
|
+
"babel-core": "^6.26.3",
|
|
47
|
+
"electron": "^23.2.0",
|
|
48
|
+
"file-type": "^18.4.0",
|
|
49
|
+
"husky": "^8.0.2",
|
|
50
|
+
"jest": "^29.3.1",
|
|
51
|
+
"pinst": "^3.0.0",
|
|
52
|
+
"rimraf": "^4.4.1",
|
|
53
|
+
"ts-jest": "^29.0.3",
|
|
54
|
+
"ts-loader": "^9.4.1",
|
|
55
|
+
"typescript": "^4.9.3",
|
|
56
|
+
"webpack": "^5.75.0",
|
|
57
|
+
"webpack-cli": "^5.0.0"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"change-case": "^4.1.2",
|
|
61
|
+
"localforage": "^1.10.0"
|
|
62
|
+
}
|
|
63
|
+
}
|