-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.35 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
{
"name": "dioma",
"version": "0.4.6",
"description": "Elegant dependency injection container for vanilla JavaScript and TypeScript",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:zheksoon/dioma.git"
},
"homepage": "https://github.com/zheksoon/dioma",
"author": {
"name": "Eugene Daragan",
"email": "[email protected]"
},
"keywords": [
"di",
"dependency injection",
"di container",
"inversion of control",
"ioc",
"ioc container",
"javascript",
"typescript",
"dioma",
"inversify",
"awilix",
"tsyringe"
],
"type": "module",
"main": "dist/dioma.js",
"module": "dist/dioma.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/dioma.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/dioma.cjs"
}
}
},
"files": [
"src",
"dist",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"build": "vite build --minify=false --sourcemap=true && cp dist/index.d.ts dist/index.d.cts",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"devDependencies": {
"@vitest/coverage-v8": "^1.4.0",
"vite": "^5.2.7",
"vitest": "^1.4.0",
"vite-plugin-dts": "^3.8.1"
}
}