@anephenix/event-emitter 0.0.12 → 0.0.13
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 +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anephenix/event-emitter",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13",
|
|
4
4
|
"description": "A small EventEmitter library",
|
|
5
5
|
"author": "Paul Jensen <paul@anephenix.com>",
|
|
6
6
|
"maintainers": [
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"types": "dist/index.d.ts",
|
|
27
27
|
"exports": {
|
|
28
28
|
".": {
|
|
29
|
-
"
|
|
30
|
-
"
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"import": "./dist/index.js"
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"build": "tsc --project tsconfig.json",
|
|
39
39
|
"cover": "npx nyc --reporter=lcov --reporter=text-summary --nycrc-path=./.nyc.json -- npm t -- --coverage",
|
|
40
40
|
"lint": "biome lint",
|
|
41
|
+
"lint:package": "npx publint",
|
|
41
42
|
"format": "biome format --fix",
|
|
42
43
|
"prepare": "husky",
|
|
43
44
|
"prepare-patch-release": "npm run update-changelog && git add CHANGELOG.md && git commit -m \"Updated changelog\" && npm version patch",
|
|
@@ -59,6 +60,7 @@
|
|
|
59
60
|
"@types/node": "^24.0.13",
|
|
60
61
|
"@vitest/coverage-v8": "^3.1.3",
|
|
61
62
|
"husky": "^9.1.7",
|
|
63
|
+
"publint": "^0.3.14",
|
|
62
64
|
"size-limit": "^11.2.0",
|
|
63
65
|
"typescript": "^5.8.3",
|
|
64
66
|
"vitest": "^3.1.3"
|