-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.1 KB
/
package.json
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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "event-tram",
"author": "Nikos Douvlis",
"license": "ISC",
"version": "0.0.1",
"description": "An event-bus implementation with strict types, channels and rpc capabilities",
"type": "module",
"sideEffects": false,
"files": [
"dist",
"strategies"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./strategies": {
"import": {
"types": "./dist/strategies/index.d.ts",
"default": "./dist/strategies/index.js"
},
"require": {
"types": "./dist/strategies/index.d.cts",
"default": "./dist/strategies/index.cjs"
}
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"test": "vitest",
"test:ui": "vitest --ui --coverage",
"coverage": "vitest run --coverage --isolate",
"lint": "eslint \"src/**/*.ts*\" && tsc --noEmit",
"format": "prettier --write ./src",
"format.check": "prettier --check ./src",
"release": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nikosdouvlis/event-tram.git"
},
"bugs": {
"url": "https://github.com/nikosdouvlis/event-tram/issues"
},
"homepage": "https://github.com/nikosdouvlis/event-tram#readme",
"devDependencies": {
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@vitest/coverage-v8": "^1.5.0",
"@vitest/ui": "^1.5.0",
"bundlewatch": "^0.3.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"globals": "^15.0.0",
"prettier": "^3.2.5",
"tsc": "^2.0.4",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.6.0",
"vitest": "^1.5.0"
}
}