dphelper 3.0.0 → 3.0.2

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.
Files changed (4) hide show
  1. package/README.md +13 -9
  2. package/dphelper.umd.js +173 -0
  3. package/index.js +15 -15
  4. package/package.json +99 -96
package/package.json CHANGED
@@ -1,96 +1,99 @@
1
- {
2
- "name": "dphelper",
3
- "version": "3.0.0",
4
- "type": "module",
5
- "main": "index.js",
6
- "description": "dphelper devtools for developers",
7
- "license": "MIT",
8
- "types": "./types/index.d.ts",
9
- "typings": "./types/*",
10
- "copyright": "Dario Passariello",
11
- "homepage": "https://a51.gitbook.io/dphelper",
12
- "author": "Dario Passariello <dariopassariello@gmail.com>",
13
- "support": {
14
- "name": "Dario Passariello",
15
- "url": "https://github.com/passariello/",
16
- "email": "dariopassariello@gmail.com"
17
- },
18
- "bugs": {
19
- "url": "https://github.com/a51-dev/a51.dphelper.public/issues"
20
- },
21
- "contributors": [
22
- {
23
- "name": "Dario Passariello",
24
- "email": "dariopassariello@gmail.com",
25
- "url": "https://dario.passariello.ca/"
26
- },
27
- {
28
- "name": "Valeria Cala Scaglitta",
29
- "email": "valeriacalascaglitta@gmail.com"
30
- }
31
- ],
32
- "keywords": [
33
- "dphelper",
34
- "front-end",
35
- "back-end",
36
- "framework",
37
- "helper",
38
- "utils",
39
- "tools",
40
- "uuid",
41
- "random",
42
- "window",
43
- "store",
44
- "easy",
45
- "pro",
46
- "powerful",
47
- "state",
48
- "status",
49
- "dp helper",
50
- "local",
51
- "storage",
52
- "indexdb",
53
- "idb",
54
- "devtool"
55
- ],
56
- "funding": [
57
- {
58
- "type": "patreon",
59
- "url": "https://www.patreon.com/passariello"
60
- }
61
- ],
62
- "typing": [
63
- "types/*"
64
- ],
65
- "exports": {
66
- ".": {
67
- "types": "./types/index.d.ts",
68
- "import": "./index.js",
69
- "default": "./index.js"
70
- },
71
- "./types/*": "./types/*"
72
- },
73
- "scripts": {
74
- "build": "rm -rf dist &&npm run generate-imports && node esbuild.config.mjs && npx tsc -p tsconfig.json --emitDeclarationOnly",
75
- "dev": "npm run generate-imports && node esbuild.config.mjs --watch-and-serve",
76
- "npm:pack": "npm run build && cd dist && npm pack",
77
- "npm:publish": "npm run build && npm publish ./dist",
78
- "test": "cd tests && npm run test",
79
- "lint": "cd tests && npm run lint",
80
- "tsc": "cd tests && tsc --noEmit",
81
- "generate-imports": "node --experimental-strip-types scripts/generate-imports.ts"
82
- },
83
- "devDependencies": {
84
- "@types/crypto-js": "4.2.2",
85
- "@types/node": "^25.3.0",
86
- "crypto-js": "4.2.0",
87
- "esbuild": "0.27.3",
88
- "esbuild-node-externals": "1.20.1",
89
- "esbuild-plugin-alias": "0.2.1",
90
- "esbuild-plugin-copy": "2.1.1",
91
- "esbuild-sass-plugin": "3.6.0",
92
- "esbuild-scss-modules-plugin": "1.1.1",
93
- "tslib": "^2.8.1",
94
- "typescript": "5.9.3"
95
- }
96
- }
1
+ {
2
+ "name": "dphelper",
3
+ "version": "3.0.2",
4
+ "type": "module",
5
+ "main": "index.js",
6
+ "browser": "./dist/dphelper.umd.js",
7
+ "description": "dphelper devtools for developers",
8
+ "license": "MIT",
9
+ "types": "./types/index.d.ts",
10
+ "typings": "./types/*",
11
+ "copyright": "Dario Passariello",
12
+ "homepage": "https://a51.gitbook.io/dphelper",
13
+ "author": "Dario Passariello <dariopassariello@gmail.com>",
14
+ "support": {
15
+ "name": "Dario Passariello",
16
+ "url": "https://github.com/passariello/",
17
+ "email": "dariopassariello@gmail.com"
18
+ },
19
+ "bugs": {
20
+ "url": "https://github.com/a51-dev/a51.dphelper.public/issues"
21
+ },
22
+ "contributors": [
23
+ {
24
+ "name": "Dario Passariello",
25
+ "email": "dariopassariello@gmail.com",
26
+ "url": "https://dario.passariello.ca/"
27
+ },
28
+ {
29
+ "name": "Valeria Cala Scaglitta",
30
+ "email": "valeriacalascaglitta@gmail.com"
31
+ }
32
+ ],
33
+ "keywords": [
34
+ "dphelper",
35
+ "front-end",
36
+ "back-end",
37
+ "framework",
38
+ "helper",
39
+ "utils",
40
+ "tools",
41
+ "uuid",
42
+ "random",
43
+ "window",
44
+ "store",
45
+ "easy",
46
+ "pro",
47
+ "powerful",
48
+ "state",
49
+ "status",
50
+ "dp helper",
51
+ "local",
52
+ "storage",
53
+ "indexdb",
54
+ "idb",
55
+ "devtool"
56
+ ],
57
+ "funding": [
58
+ {
59
+ "type": "patreon",
60
+ "url": "https://www.patreon.com/passariello"
61
+ }
62
+ ],
63
+ "typing": [
64
+ "types/*"
65
+ ],
66
+ "exports": {
67
+ ".": {
68
+ "types": "./types/index.d.ts",
69
+ "import": "./index.js",
70
+ "default": "./index.js"
71
+ },
72
+ "./types/*": "./types/*"
73
+ },
74
+ "scripts": {
75
+ "build": "rimraf dist && npm run generate-imports && node esbuild.config.mjs && node node_modules/typescript/bin/tsc -p tsconfig.json --emitDeclarationOnly",
76
+ "dev": "npm run generate-imports && node esbuild.config.mjs --watch-and-serve",
77
+ "npm:pack": "npm run build && cd dist && npm pack",
78
+ "npm:publish": "npm run build && npm publish ./dist --access public",
79
+ "test": "cd tests && npm run test",
80
+ "lint": "cd tests && npm run lint",
81
+ "tsc": "cd tests && tsc --noEmit",
82
+ "generate-imports": "tsx scripts/generate-imports.ts"
83
+ },
84
+ "devDependencies": {
85
+ "@types/crypto-js": "4.2.2",
86
+ "@types/node": "^25.3.0",
87
+ "crypto-js": "4.2.0",
88
+ "esbuild": "0.27.3",
89
+ "esbuild-node-externals": "1.20.1",
90
+ "esbuild-plugin-alias": "0.2.1",
91
+ "esbuild-plugin-copy": "2.1.1",
92
+ "esbuild-sass-plugin": "3.6.0",
93
+ "esbuild-scss-modules-plugin": "1.1.1",
94
+ "rimraf": "6.1.3",
95
+ "tslib": "^2.8.1",
96
+ "tsx": "^4.21.0",
97
+ "typescript": "5.9.3"
98
+ }
99
+ }