-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 2.09 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
{
"name": "pumpit",
"version": "10.1.0",
"description": "Dependency injection container without decorators, supports circular dependencies and arrays of 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 --apply --no-errors-on-unmatched --files-ignore-unknown=true",
"check:ci": "biome check ./src --no-errors-on-unmatched --files-ignore-unknown=true",
"build": "shx rm -rf ./dist && NODE_ENV=production microbundle --tsconfig ./tsconfig.json --format modern,cjs --output dist/index.js && shx cp ./dist/index.d.ts ./dist/index.d.cts",
"gen:docs": "rm -rf ./docs/api && typedoc --options typedoc.cjs --plugin typedoc-plugin-markdown",
"prepublishOnly": "pnpm build",
"prepare": "lefthook install",
"type:check": "tsc --noEmit",
"release": "pnpm run prepublishOnly && pnpm changeset publish"
},
"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": "1.9.4",
"@changesets/cli": "^2.27.9",
"@vitest/coverage-v8": "^2.1.3",
"lefthook": "^1.8.1",
"microbundle": "^0.15.1",
"shx": "^0.3.4",
"typedoc": "^0.26.10",
"typedoc-plugin-markdown": "^4.2.9",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
}
}