-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.11 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.11 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
{
"name": "@marceloraineri/async-context",
"version": "1.1.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"dev": "tsx watch --inspect core/index.ts",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ohraineri/AsyncContext.git"
},
"author": "Marcelo Raineri",
"license": "ISC",
"bugs": {
"url": "https://github.com/ohraineri/AsyncContext/issues"
},
"homepage": "https://github.com/ohraineri/AsyncContext#readme",
"devDependencies": {
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"overrides": {
"glob": "^11.0.1"
}
}