-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.23 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
53
54
55
56
57
{
"name": "@chubbyts/chubbyts-dic-types",
"type": "module",
"version": "1.2.1",
"description": "Dependency injection container (DIC) types, PSR-11 inspired.",
"keywords": [
"chubbyts",
"dic",
"dependency injection container",
"dependency injection",
"container",
"PSR-11"
],
"author": "Dominik Zogg",
"license": "MIT",
"repository": "chubbyts/chubbyts-dic-types",
"scripts": {
"build": "node ./build.js",
"cs-fix": "prettier --write src",
"cs": "prettier --check src",
"infection": "stryker run",
"lint-fix": "eslint src --fix",
"lint": "eslint src",
"prepare": "npm run build"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all"
},
"files": [
"dist"
],
"exports": {
"./*": {
"types": "./*.d.ts",
"require": "./*.cjs",
"import": "./*.mjs",
"default": "./*.mjs"
}
},
"engines": {
"node": ">=16"
},
"dependencies": {},
"devDependencies": {
"@chubbyts/chubbyts-eslint": "^2.0.7",
"@chubbyts/chubbyts-packaging": "^2.0.7",
"@types/node": "^20.14.6",
"prettier": "^3.3.2",
"typescript": "^5.4.5"
},
"publishConfig": {
"access": "public"
}
}