-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.34 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
{
"name": "@lzptec/ctx",
"version": "1.0.0",
"description": "Dead simple context manager for Nodejs",
"author": "André Posso <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/LzpTec/ctx.git"
},
"keywords": [
"context",
"context-manager",
"typescript",
"javascript",
"async-local-storage",
"async",
"backend",
"nodejs"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"prepublish": "pnpm run build",
"test": "ava test.ts",
"release": "commit-and-tag-version",
"release:minor": "commit-and-tag-version --release-as minor",
"release:patch": "commit-and-tag-version --release-as patch",
"release:major": "commit-and-tag-version --release-as major"
},
"devDependencies": {
"@types/node": "^16.11.00",
"ava": "^6.1.0",
"commit-and-tag-version": "^12.2.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"engines": {
"node": ">= 16.4.0"
}
}