-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.22 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.22 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
{
"author": "Roberto Pintos López",
"bugs": {
"url": "https://github.com/inversify/monorepo/issues"
},
"description": "InversifyJs binding decorators docs code examples package",
"dependencies": {
"typescript": "6.0.2"
},
"devDependencies": {
"@inversifyjs/eslint-plugin-require-extensions": "workspace:*",
"@types/node": "24.12.2",
"eslint": "10.2.0",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"tslib": "2.8.1"
},
"homepage": "https://inversify.io",
"keywords": [
"dependency injection",
"dependency inversion",
"di",
"inversion of control container",
"ioc",
"javascript",
"node",
"typescript"
],
"devEngines": {
"node": "^24.10.0",
"pnpm": "^10.13.1"
},
"license": "MIT",
"exports": {
".": "./lib/index.js"
},
"name": "@inversifyjs/code-examples-devkit",
"type": "module",
"private": true,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inversify/monorepo.git"
},
"scripts": {
"build": "tsc",
"build:clean": "rimraf generated lib",
"format": "prettier --write ./src",
"lint": "eslint ./src",
"prebuild": "pnpm run build:clean"
}
}