-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
96 lines (96 loc) · 2.7 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@wessberg/di",
"version": "3.0.2",
"description": "A compile-time powered Dependency-Injection container for Typescript that holds services and can produce instances of them as required.",
"scripts": {
"generate:sandhog": "sandhog all --yes",
"generate:changelog": "standard-changelog --first-release",
"generate:all": "pnpm run generate:sandhog && pnpm run generate:changelog",
"clean": "rimraf dist",
"lint": "tsc --noEmit && eslint \"src/**/*.ts\" --color --fix",
"prettier": "prettier --write \"{src,test,documentation}/**/*.{js,ts,json,html,xml,css,md}\"",
"test": "node --import tsx --test \"./test/**/*.test.ts\"",
"prebuild": "pnpm run clean",
"build": "pnpm run clean && tsup \"src/index.ts\" --sourcemap --dts --format esm,cjs",
"preversion": "pnpm run lint && pnpm run build",
"version": "pnpm run preversion && pnpm run generate:all && git add .",
"release": "np --no-cleanup --no-yarn --no-tests",
"update:check": "pnpx npm-check-updates --dep dev,prod",
"update:commit": "pnpx npm-check-updates -u --dep dev,prod && pnpm update && pnpm install"
},
"keywords": [
"DI",
"dependency injection",
"ioc",
"inversion",
"service",
"container",
"newable",
"reflection",
"singleton",
"transient"
],
"devDependencies": {
"@types/node": "22.7.6",
"@wessberg/prettier-config": "^1.0.0",
"@wessberg/ts-config": "^5.0.20",
"@eslint/js": "9.12.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-prettier": "^5.2.1",
"typescript-eslint": "^8.10.0",
"typescript": "5.6.3",
"npm-check-updates": "^17.1.4",
"sandhog": "^3.0.2",
"standard-changelog": "^6.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"tsup": "^8.3.0",
"np": "^10.0.7",
"pnpm": "^9.12.2",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsx": "^4.19.1"
},
"dependencies": {},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/wessberg/di.git"
},
"bugs": {
"url": "https://github.com/wessberg/di/issues"
},
"contributors": [
{
"name": "Frederik Wessberg",
"email": "frederikwessberg@hotmail.com",
"url": "https://github.com/wessberg",
"imageUrl": "https://avatars2.githubusercontent.com/u/20454213?s=460&v=4",
"role": "Lead Developer",
"twitter": "FredWessberg",
"github": "wessberg"
}
],
"engines": {
"node": ">=12.0.0"
},
"license": "MIT",
"files": [
"dist/**/*.*"
],
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"prettier": "@wessberg/prettier-config"
}