-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.64 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
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
{
"name": "@lucastraba/service-manager",
"version": "1.0.0",
"description": "A simple IoC container for TypeScript",
"keywords": [
"IoC",
"Inversion of Control",
"Dependency Injection",
"TypeScript",
"JavaScript",
"Container",
"Service Manager",
"Node.js",
"Singleton",
"Lazy Loading",
"Type Safety",
"Zero Dependencies"
],
"repository": {
"type": "git",
"url": "https://github.com/lucastraba/service-manager.git"
},
"license": "MIT",
"author": {
"name": "Lucas Traba",
"email": "lucastraba@gmail.com"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/main.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "vite build",
"build-development": "pnpm build",
"build-production": "pnpm build",
"build-staging": "pnpm build",
"check-all": "pnpm run check-type && pnpm run check-lint && pnpm run check-prettier",
"check-all-fix": "pnpm run check-lint-fix && pnpm run check-prettier-fix",
"check-and-test": "pnpm run check-all && pnpm run test",
"check-lint": "eslint . --cache",
"check-lint-fix": "eslint . --fix --cache",
"check-prettier": "prettier . --check --cache",
"check-prettier-fix": "prettier . --write --cache",
"check-type": "tsc -p tsconfig.json --noEmit",
"dependencies-clean": "rm -rf node_modules dist .eslintcache",
"dependencies-reinstall": "pnpm run dependencies-clean && pnpm install",
"dependencies-update": "pnpm update",
"dependencies-update-breaking": "pnpm update --latest",
"dev": "pnpm build --watch",
"generate-docs": "typedoc",
"prepare": "husky",
"test": "vitest run"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vitest/runner": "^2.1.8",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tsdoc": "^0.4.0",
"eslint-plugin-vitest": "^0.5.4",
"eslint-plugin-vitest-globals": "^1.5.0",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.6",
"prettier-plugin-sort-json": "^4.0.0",
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^4.4.1",
"typedoc-plugin-missing-exports": "^3.1.0",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vite-plugin-dts": "^4.4.0",
"vitest": "^2.1.8",
"vitest-mock-extended": "2.0.2"
}
}