Files
tools/packages/ioc/package.json
2024-06-13 13:08:54 -05:00

32 lines
610 B
JSON

{
"name": "@sern/ioc",
"version": "1.0.3",
"description": "Dependency Injection system",
"main": "dist/index.js",
"module": "./dist/index.js",
"exports": {
"." : {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./global": {
"import": "./dist/global.js",
"require": "./dist/global.js"
}
},
"scripts": {
"test": "vitest --run",
"tdd": "vitest",
"build": "tsc"
},
"devDependencies": {
"vitest": "^1.0.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"publishConfig": {
"access": "public"
}
}