@adrianbutt/evutils 1.0.0

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 ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "@adrianbutt/evutils",
3
+ "version": "1.0.0",
4
+ "description": "Event utilities",
5
+ "module": "dist/mjs/src/index.js",
6
+ "exports": {
7
+ ".": {
8
+ "import": "./dist/mjs/src/index.js"
9
+ },
10
+ "./*": {
11
+ "import": "./dist/mjs/src/*.js"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/adrianbutt/evutils.git"
20
+ },
21
+ "jsdelivr": "./dist/web/evutils.js",
22
+ "scripts": {
23
+ "build": "node build.mjs",
24
+ "build:webpack": "webpack",
25
+ "compile": "tsc -p tsconfig-compile.json --noEmit && tsc -p tsconfig-compile-examples.json --noEmit",
26
+ "doc": "typedoc --out docs src/**",
27
+ "pretty": "prettier --write '{src,tests}/**/*.{js,ts,mjs,cjs,json}'",
28
+ "pretty-dry-run": "prettier --check '{src,tests}/**/*.{js,ts,mjs,cjs,json}'",
29
+ "test": "vitest run",
30
+ "test-coverage": "vitest run --coverage"
31
+ },
32
+ "author": "Adrian Butt",
33
+ "license": "MIT",
34
+ "devDependencies": {
35
+ "@types/node": "^25.3.5",
36
+ "@vitest/browser-playwright": "^4.1.2",
37
+ "@vitest/coverage-v8": "^4.1.2",
38
+ "chalk": "^5.6.2",
39
+ "jsdom": "^29.0.1",
40
+ "prettier": "^3.8.1",
41
+ "process-envify": "^2.0.0",
42
+ "ts-loader": "^9.5.4",
43
+ "tsc-alias": "^1.8.10",
44
+ "typedoc": "^0.28.17",
45
+ "typescript": "^5.9.3",
46
+ "vitest": "^4.1.2",
47
+ "webpack": "^5.101.0",
48
+ "webpack-cli": "^6.0.1",
49
+ "yargs": "^18.0.0"
50
+ },
51
+ "dependencies": {},
52
+ "browserslist": [
53
+ ">0.2%",
54
+ "not dead",
55
+ "not op_mini all",
56
+ "not IE <= 11",
57
+ "not Safari <= 8",
58
+ "not Android <= 4.4"
59
+ ]
60
+ }