-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.24 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.24 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
{
"name": "@izumi-framework/izumi-chibi-ts",
"version": "0.0.6",
"description": "Chibi Izumi - A TypeScript replica of Scala's distage-core library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc && tsc-alias --resolve-full-paths",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run lint && npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/7mind/izumi-chibi-ts.git"
},
"bugs": {
"url": "https://github.com/7mind/izumi-chibi-ts/issues"
},
"homepage": "https://github.com/7mind/izumi-chibi-ts",
"keywords": [
"dependency-injection",
"izumi",
"di",
"ioc",
"distage",
"typescript",
"staged-di",
"functoid"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@swc/core": "^1.13.5",
"@types/node": "^20.11.0",
"@vitest/coverage-v8": "^1.2.0",
"tsc-alias": "^1.8.16",
"typescript": "^5.3.3",
"unplugin-swc": "^1.5.8",
"vitest": "^1.2.0"
}
}