-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.83 KB
/
package.json
File metadata and controls
73 lines (73 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
70
71
72
73
{
"name": "injeca",
"type": "module",
"version": "0.2.0",
"packageManager": "pnpm@11.3.0",
"description": "Pure functional programming based dependency injection library inspired by go.uber.org/fig and go.uber.org/dig.",
"author": {
"name": "Moeru AI Project AIRI Team",
"email": "airi@moeru.ai",
"url": "https://github.com/moeru-ai"
},
"license": "MIT",
"homepage": "https://github.com/moeru-ai/injeca",
"repository": {
"type": "git",
"url": "https://github.com/moeru-ai/injeca.git"
},
"exports": {
".": {
"type": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./global": {
"type": "./dist/global.d.mts",
"default": "./dist/global.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.mts",
"files": [
"README.md",
"dist",
"package.json"
],
"scripts": {
"build": "tsdown",
"test": "vitest --coverage",
"test:run": "vitest run",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"typecheck": "tsc --noEmit",
"up": "taze -w -r -I -f && pnpm prune && pnpm dedupe"
},
"peerDependencies": {
"@guiiai/logg": ">= 1",
"error-stack-parser": "^2.1.4",
"nanoid": ">=5"
},
"peerDependenciesMeta": {
"@guiiai/logg": {
"optional": true
}
},
"devDependencies": {
"@antfu/eslint-config": "^8.2.0",
"@moeru/eslint-config": "^0.1.0-beta.18",
"@moeru/std": "^0.1.0-beta.18",
"@moeru/tsconfig": "^0.1.0-beta.18",
"@types/node": "^25.6.0",
"bumpp": "^11.0.1",
"eslint": "^10.2.0",
"eslint-plugin-oxlint": "^1.60.0",
"oxlint": "^1.60.0",
"publint": "^0.3.18",
"taze": "^19.11.0",
"tsdown": "^0.17.4",
"typescript": "^6.0.2",
"unplugin-unused": "^0.5.7",
"vite": "^8.0.8",
"vitest": "^4.1.4"
}
}