inversify-typesafe-spring-like 0.5.11 → 0.5.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +24 -25
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "inversify-typesafe-spring-like",
3
3
  "type": "module",
4
- "version": "0.5.11",
4
+ "version": "0.5.12",
5
5
  "description": "Add-On Library for inversify-typesafe to make it more like Spring.",
6
6
  "source": "src/index.ts",
7
7
  "exports": {
@@ -28,25 +28,6 @@
28
28
  "package.json",
29
29
  "docs/**/*.md"
30
30
  ],
31
- "scripts": {
32
- "preinstall": "npx only-allow pnpm",
33
- "setup": "husky install",
34
- "clean": "rimraf dist",
35
- "bundle": "microbundle --format modern,cjs,umd",
36
- "typedoc": "typedoc src/index.ts --out docs/web/types",
37
- "build": "pnpm run clean && pnpm run bundle && sh ../../scripts/generate-cts.sh && rimraf dist/index.d.ts\\'\\'",
38
- "dev": "microbundle watch",
39
- "prepublishOnly": "pnpm run test && pnpm run build",
40
- "watch": "pnpm run clean && tsc -w",
41
- "test": "vitest run --dir tests",
42
- "test:watch": "vitest --dir tests",
43
- "coverage": "vitest run --coverage --dir tests",
44
- "prettier": "prettier . --write",
45
- "lint": "eslint src/**",
46
- "lint-staged": "lint-staged",
47
- "check": "tsc --strict --noEmit --extendedDiagnostics",
48
- "set-version": "sh ./scripts/set-version.sh"
49
- },
50
31
  "repository": {
51
32
  "type": "git",
52
33
  "url": "https://github.com/myeongjae-kim/inversify-typesafe"
@@ -62,13 +43,31 @@
62
43
  "author": "Myeongjae Kim",
63
44
  "license": "MIT",
64
45
  "dependencies": {
65
- "inversify-typesafe": "^0.5.11"
46
+ "inversify-typesafe": "^0.5.12"
66
47
  },
67
48
  "devDependencies": {
68
- "inversify": "^8.1.3",
69
- "inversify-typesafe": "workspace:*"
49
+ "inversify": "^8.1.3"
70
50
  },
71
51
  "peerDependencies": {
72
- "inversify": ">=7.0.0"
52
+ "inversify": ">=7.0.0",
53
+ "inversify-typesafe": "^0.5.12"
54
+ },
55
+ "scripts": {
56
+ "preinstall": "npx only-allow pnpm",
57
+ "setup": "husky install",
58
+ "clean": "rimraf dist",
59
+ "bundle": "microbundle --format modern,cjs,umd",
60
+ "typedoc": "typedoc src/index.ts --out docs/web/types",
61
+ "build": "pnpm run clean && pnpm run bundle && sh ../../scripts/generate-cts.sh && rimraf dist/index.d.ts\\'\\'",
62
+ "dev": "microbundle watch",
63
+ "watch": "pnpm run clean && tsc -w",
64
+ "test": "vitest run --dir tests",
65
+ "test:watch": "vitest --dir tests",
66
+ "coverage": "vitest run --coverage --dir tests",
67
+ "prettier": "prettier . --write",
68
+ "lint": "eslint src/**",
69
+ "lint-staged": "lint-staged",
70
+ "check": "tsc --strict --noEmit --extendedDiagnostics",
71
+ "set-version": "sh ./scripts/set-version.sh"
73
72
  }
74
- }
73
+ }