-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.54 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
{
"name": "elysia-cqrs",
"version": "1.0.0",
"description": "Plugin for Elysia for retrieving Bearer token",
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/cjs/index.js"
}
},
"keywords": [
"elysia",
"cqrs",
"pattern"
],
"repository": {
"type": "git",
"url": "https://github.com/jassix/elysia-cqrs"
},
"author": {
"name": "Mikita Pitunoŭ",
"url": "https://github.com/jassix",
"email": "jassix@pm.me"
},
"homepage": "https://github.com/jassix/elysia-cqrs",
"bugs": "https://github.com/jassix/elysia-cqrs/issues",
"scripts": {
"dev": "bun run --watch example/index.ts",
"test": "bun test && npm run test:node",
"test:node": "npm install --prefix ./test/node/cjs/ && npm install --prefix ./test/node/esm/ && node ./test/node/cjs/index.js && node ./test/node/esm/index.js",
"build": "bun build.ts",
"release": "npm run build && npm run test && npm publish --access public",
"lint": "eslint \"src/**/*.{js,mjs,cjs,ts,mts}\"",
"lint:fix": "eslint \"src/**/*.{js,mjs,cjs,ts,mts}\" --fix"
},
"peerDependencies": {
"elysia": ">= 1.1.0"
},
"devDependencies": {
"elysia": ">= 1.1.0-rc.2",
"@types/bun": "1.1.13",
"eslint": "^8.57.0",
"eslint-kit": "^10.33.0",
"tsup": "^8.1.0",
"typescript": "^5.5.3",
"prettier": "^3.3.3"
}
}