evnty 4.7.0 → 4.7.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.
- package/package.json +20 -18
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "evnty",
|
|
3
3
|
"description": "0-Deps, simple, fast, for browser and node js reactive anonymous event library",
|
|
4
|
-
"version": "4.7.
|
|
4
|
+
"version": "4.7.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
7
7
|
"main": "build/index.cjs",
|
|
@@ -16,6 +16,18 @@
|
|
|
16
16
|
"src/__tests__/example.js"
|
|
17
17
|
],
|
|
18
18
|
"sideEffects": false,
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "rm -rf build && inop src build -i __tests__ -i *.tmp.ts && tsc --declaration --emitDeclarationOnly",
|
|
21
|
+
"test": "jest",
|
|
22
|
+
"test:build": "node src/__tests__/index.cjs && node src/__tests__/index.mjs",
|
|
23
|
+
"lint": "eslint src",
|
|
24
|
+
"docs:build": "vuepress build docs",
|
|
25
|
+
"docs:clean-dev": "vuepress dev docs --clean-cache",
|
|
26
|
+
"docs:dev": "vuepress dev docs",
|
|
27
|
+
"docs:gen": "rm -f docs/*.tmp.md && for file in src/*.ts; do node --loader ts-node/esm ./scripts/docgen.ts $file; done",
|
|
28
|
+
"docs:update-package": "pnpm dlx vp-update",
|
|
29
|
+
"prepare": "husky"
|
|
30
|
+
},
|
|
19
31
|
"repository": {
|
|
20
32
|
"type": "git",
|
|
21
33
|
"url": "git+https://github.com/3axap4eHko/evnty.git"
|
|
@@ -52,14 +64,14 @@
|
|
|
52
64
|
"@eslint/js": "^9.26.0",
|
|
53
65
|
"@swc/jest": "^0.2.38",
|
|
54
66
|
"@types/jest": "^29.5.14",
|
|
55
|
-
"@types/node": "^22.15.
|
|
67
|
+
"@types/node": "^22.15.17",
|
|
56
68
|
"@typescript-eslint/eslint-plugin": "^8.32.0",
|
|
57
69
|
"@typescript-eslint/parser": "^8.32.0",
|
|
58
70
|
"@typescript-eslint/typescript-estree": "^8.32.0",
|
|
59
|
-
"@vuepress/bundler-vite": "2.0.0-rc.
|
|
60
|
-
"@vuepress/theme-default": "2.0.0-rc.
|
|
71
|
+
"@vuepress/bundler-vite": "2.0.0-rc.23",
|
|
72
|
+
"@vuepress/theme-default": "2.0.0-rc.103",
|
|
61
73
|
"eslint": "^9.26.0",
|
|
62
|
-
"eslint-config-prettier": "^10.1.
|
|
74
|
+
"eslint-config-prettier": "^10.1.5",
|
|
63
75
|
"eslint-plugin-prettier": "^5.4.0",
|
|
64
76
|
"husky": "^9.1.7",
|
|
65
77
|
"inop": "^0.7.4",
|
|
@@ -71,17 +83,7 @@
|
|
|
71
83
|
"typescript": "^5.8.3",
|
|
72
84
|
"typescript-eslint": "^8.32.0",
|
|
73
85
|
"vue": "^3.5.13",
|
|
74
|
-
"vuepress": "2.0.0-rc.
|
|
86
|
+
"vuepress": "2.0.0-rc.23"
|
|
75
87
|
},
|
|
76
|
-
"
|
|
77
|
-
|
|
78
|
-
"test": "jest",
|
|
79
|
-
"test:build": "node src/__tests__/index.cjs && node src/__tests__/index.mjs",
|
|
80
|
-
"lint": "eslint src",
|
|
81
|
-
"docs:build": "vuepress build docs",
|
|
82
|
-
"docs:clean-dev": "vuepress dev docs --clean-cache",
|
|
83
|
-
"docs:dev": "vuepress dev docs",
|
|
84
|
-
"docs:gen": "rm -f docs/*.tmp.md && for file in src/*.ts; do node --loader ts-node/esm ./scripts/docgen.ts $file; done",
|
|
85
|
-
"docs:update-package": "pnpm dlx vp-update"
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
+
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39"
|
|
89
|
+
}
|