Files
tools/packages/ioc/package.json
2025-02-07 01:34:03 -06:00

35 lines
651 B
JSON

{
"name": "@sern/ioc",
"version": "1.1.2",
"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": "jacoobes",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"directories": {
"test": "test"
}
}