@just-web/presets-browser 5.0.3 → 5.0.5
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/cjs/package.json +3 -1
- package/package.json +21 -25
package/cjs/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@just-web/presets-browser",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.5",
|
|
4
4
|
"description": "just-web presets for browser related features",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"just-web",
|
|
@@ -32,7 +32,8 @@
|
|
|
32
32
|
"require": {
|
|
33
33
|
"types": "./cjs/index.d.ts",
|
|
34
34
|
"require": "./cjs/index.js"
|
|
35
|
-
}
|
|
35
|
+
},
|
|
36
|
+
"default": "./esm/index.js"
|
|
36
37
|
}
|
|
37
38
|
},
|
|
38
39
|
"main": "./cjs/index.js",
|
|
@@ -45,11 +46,9 @@
|
|
|
45
46
|
"!**/*.{spec,test,unit,accept,integrate,system,perf,stress}.*"
|
|
46
47
|
],
|
|
47
48
|
"dependencies": {
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"@just-web/
|
|
51
|
-
"@just-web/browser-preferences": "^7.1.1",
|
|
52
|
-
"@just-web/history": "^2.0.3"
|
|
49
|
+
"@just-web/browser": "^7.1.3",
|
|
50
|
+
"@just-web/browser-preferences": "^7.1.3",
|
|
51
|
+
"@just-web/history": "^2.0.5"
|
|
53
52
|
},
|
|
54
53
|
"devDependencies": {
|
|
55
54
|
"@repobuddy/jest": "^3.3.0",
|
|
@@ -58,46 +57,43 @@
|
|
|
58
57
|
"@types/jest": "^29.5.1",
|
|
59
58
|
"cross-env": "^7.0.3",
|
|
60
59
|
"depcheck": "~1.4.3",
|
|
61
|
-
"eslint": "^8.11.0",
|
|
62
|
-
"eslint-plugin-harmony": "^7.1.2",
|
|
63
60
|
"history": "^5.3.0",
|
|
64
61
|
"jest": "^29.5.0",
|
|
65
62
|
"jest-validate": "^29.5.0",
|
|
66
63
|
"jest-watch-suspend": "^1.1.2",
|
|
67
64
|
"jest-watch-toggle-config-2": "^2.1.0",
|
|
68
65
|
"jest-watch-typeahead": "^2.2.2",
|
|
69
|
-
"ncp": "^2.0.0",
|
|
70
66
|
"npm-run-all": "^4.1.5",
|
|
67
|
+
"repobuddy": "^1.0.1",
|
|
71
68
|
"rimraf": "~5.0.0",
|
|
72
69
|
"size-limit": "~8.2.0",
|
|
73
70
|
"ts-jest": "^29.1.0",
|
|
71
|
+
"tslib": "^2.5.0",
|
|
74
72
|
"type-plus": "^6.7.0",
|
|
75
73
|
"typescript": "^5.0.4",
|
|
76
|
-
"@just-web/app": "^7.1.
|
|
77
|
-
"@just-web/commands": "^7.1.
|
|
78
|
-
"@just-web/keyboard": "^7.1.
|
|
79
|
-
"@just-web/repo-scripts": "^0.2.1"
|
|
74
|
+
"@just-web/app": "^7.1.3",
|
|
75
|
+
"@just-web/commands": "^7.1.3",
|
|
76
|
+
"@just-web/keyboard": "^7.1.3"
|
|
80
77
|
},
|
|
81
78
|
"peerDependencies": {
|
|
82
|
-
"@just-web/app": "^7.1.
|
|
83
|
-
"@just-web/
|
|
84
|
-
"@just-web/
|
|
79
|
+
"@just-web/app": "^7.1.3",
|
|
80
|
+
"@just-web/browser": "^7.1.3",
|
|
81
|
+
"@just-web/browser-preferences": "^7.1.3",
|
|
82
|
+
"@just-web/commands": "^7.1.3",
|
|
83
|
+
"@just-web/history": "^2.0.5",
|
|
84
|
+
"@just-web/keyboard": "^7.1.3"
|
|
85
85
|
},
|
|
86
86
|
"peerDependenciesMeta": {
|
|
87
87
|
"@just-web/keyboard": {
|
|
88
88
|
"optional": true
|
|
89
89
|
}
|
|
90
90
|
},
|
|
91
|
-
"typedoc": {
|
|
92
|
-
"entryPoint": "./ts/index.ts",
|
|
93
|
-
"readmeFile": "./README.md"
|
|
94
|
-
},
|
|
95
91
|
"scripts": {
|
|
96
|
-
"build": "run-p build:cjs build:esm",
|
|
97
|
-
"build:cjs": "
|
|
92
|
+
"build": "run-p build:cjs build:esm build:tslib",
|
|
93
|
+
"build:cjs": "buddy ts build cjs",
|
|
98
94
|
"build:esm": "tsc",
|
|
99
|
-
"build:
|
|
100
|
-
"clean": "rimraf cjs esm coverage
|
|
95
|
+
"build:tslib": "buddy ts build tslib",
|
|
96
|
+
"clean": "rimraf cjs esm coverage tslib --glob *.tsbuildinfo",
|
|
101
97
|
"coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest --coverage",
|
|
102
98
|
"depcheck": "depcheck",
|
|
103
99
|
"lint": "cross-env TIMING=1 eslint --ext=ts,tsx,js,yaml,yml .",
|