-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.45 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "railjs-core",
"version": "0.1.0",
"description": "A lightweight event bus for building modular JavaScript applications with strict module isolation",
"main": "./dist/rail.cjs.js",
"module": "./dist/rail.esm.js",
"types": "./rail.d.ts",
"type": "module",
"exports": {
".": {
"types": "./rail.d.ts",
"import": "./dist/rail.esm.js",
"require": "./dist/rail.cjs.js",
"default": "./dist/rail.esm.js"
}
},
"files": [
"rail.js",
"rail.d.ts",
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:legacy": "node test.js",
"type-check": "tsc --noEmit",
"build": "node build.js",
"benchmark": "node benchmark.js",
"prebuild": "npm run type-check",
"prepublishOnly": "npm test && npm run build"
},
"keywords": [
"event-bus",
"event-emitter",
"modular",
"events",
"pub-sub",
"event-driven",
"module-isolation",
"architecture",
"typescript",
"async"
],
"author": "PxPerfectMike",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PxPerfectMike/RailJS.git"
},
"bugs": {
"url": "https://github.com/PxPerfectMike/RailJS/issues"
},
"homepage": "https://github.com/PxPerfectMike/RailJS#readme",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.2.4",
"esbuild": "^0.25.10",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}