-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.23 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.23 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
{
"name": "@shirudo/kizuna",
"version": "1.0.0-rc.0",
"description": "A powerful and flexible dependency injection library for TypeScript and JavaScript.",
"repository": {
"type": "git",
"url": "git+https://github.com/shi-rudo/kizuna.git"
},
"keywords": [
"Dependency Injection",
"DI",
"IoC",
"Inversion of Control",
"TypeScript",
"JavaScript"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"skills",
"bin",
"!skills/_artifacts"
],
"scripts": {
"build": "tsup",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"author": "",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.13.1",
"devDependencies": {
"@biomejs/biome": "2.1.2",
"@tanstack/intent": "^0.0.14",
"@types/node": "^24.0.15",
"@vitest/coverage-v8": "^3.2.4",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vite": "^7.0.5",
"vitest": "^3.2.4"
},
"bin": {
"intent": "bin/intent.js"
}
}