-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.15 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
{
"name": "@aklinker1/zero-ioc",
"version": "1.6.0",
"description": "Zero dependency, type-safe, decorator-free IoC container",
"packageManager": "bun@1.3.5",
"scripts": {
"test": "bun test --watch",
"build": "tsdown src/index.ts",
"bench": "bun run bench/index.ts",
"prepack": "bun run build"
},
"devDependencies": {
"@aklinker1/check": "^2.2.0",
"@observablehq/plot": "^0.6.17",
"@types/bun": "^1.3.5",
"awilix": "^13.0.3",
"linkedom": "^0.18.12",
"oxlint": "^1.36.0",
"prettier": "^3.7.4",
"publint": "^0.3.16",
"tinybench": "^6.0.0",
"tsdown": "^0.19.0-beta.2",
"typescript": "^5.9.3"
},
"license": "MIT",
"author": {
"email": "aaronklinker1@gmail.com",
"name": "Aaron Klinker"
},
"homepage": "https://jsr.io/@aklinker1/zero-ioc",
"repository": {
"url": "git+https://github.com/aklinker1/zero-ioc.git"
},
"files": [
"dist"
],
"type": "module",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"publishConfig": {
"access": "public"
}
}