-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.76 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
{
"name": "pumpit",
"version": "11.0.1",
"description": "Small dependency injection container without decorators. Typed tokens, four injection scopes, child containers and zero dependencies.",
"keywords": [
"ioc",
"di",
"dependency injection",
"dependency inversion",
"dependency injection container",
"inversion of control container"
],
"type": "module",
"private": false,
"author": "Ivan Vlatkovic",
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"test": "vitest run --coverage",
"test:watch": "vitest",
"lint": "biome lint ./src",
"check": "biome check ./src --write --no-errors-on-unmatched --files-ignore-unknown=true",
"check:ci": "biome check ./src --no-errors-on-unmatched --files-ignore-unknown=true",
"build": "tsdown",
"prepublishOnly": "pnpm build",
"prepare": "lefthook install",
"type:check": "tsc --noEmit && tsc -p tsconfig.test.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivandotv/pumpit.git"
},
"bugs": {
"url": "https://github.com/ivandotv/pumpit/issues"
},
"homepage": "https://github.com/ivandotv/pumpit#readme",
"devDependencies": {
"@biomejs/biome": "2.5.8",
"@changesets/cli": "^3.0.0",
"@types/node": "^24.13.3",
"@vitest/coverage-v8": "^4.1.10",
"lefthook": "^2.1.10",
"tsdown": "^0.22.14",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}