-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.83 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.83 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "inwire",
"version": "2.1.7",
"description": "Zero-ceremony dependency injection for TypeScript. Full inference, no decorators, no tokens. Built-in introspection for AI tooling.",
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"files": [
"dist",
"!dist/*.map"
],
"scripts": {
"build": "tsdown",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "biome check",
"lint:fix": "biome check --fix",
"format": "biome format --write",
"format:check": "biome format",
"check": "biome check && tsc --noEmit",
"example:web": "tsx examples/01-web-service.ts",
"example:test": "tsx examples/02-modular-testing.ts",
"example:plugin": "tsx examples/03-plugin-system.ts",
"example:modules": "tsx examples/04-modules.ts",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"dependency-injection",
"di",
"ioc",
"typescript",
"proxy",
"ai-first",
"clean-architecture"
],
"repository": {
"type": "git",
"url": "git+https://github.com/axelhamil/inwire.git"
},
"homepage": "https://github.com/axelhamil/inwire#readme",
"bugs": {
"url": "https://github.com/axelhamil/inwire/issues"
},
"packageManager": "pnpm@10.26.0",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.4.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@vitest/coverage-v8": "^4.0.18",
"publint": "^0.3.17",
"semantic-release": "^25.0.3",
"tsdown": "^0.20.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}