-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.42 KB
/
package.json
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
{
"name": "@alxcube/di-container",
"version": "1.0.1",
"type": "module",
"main": "./dist/di-container.umd.cjs",
"module": "./dist/di-container.js",
"types": "./dist/di-container.d.ts",
"exports": {
".": {
"import": "./dist/di-container.js",
"require": "./dist/di-container.umd.cjs"
}
},
"scripts": {
"build": "tsc && vite build",
"test": "vitest --run",
"lint": "eslint ./src ./spec --ext .ts && npm run prettier",
"prettier": "prettier --write 'src/**/*.ts' && prettier --write 'spec/**/*.ts'"
},
"author": "Alexander Alexandrov <[email protected]>",
"description": "Simple but flexible type-safe dependency injection container for TypeScript applications.",
"keywords": [
"dependency injection",
"inversion of control",
"service container",
"ioc",
"di"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alxcube/di-container.git"
},
"license": "MIT",
"files": [
"dist/"
],
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-plugin-banner": "^0.7.1",
"vite-plugin-dts": "^3.9.0",
"vitest": "^1.5.2"
}
}