-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 919 Bytes
/
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
{
"name": "@wangminghua/di",
"version": "0.0.6",
"description": "typescript dependency injection",
"main": "./dist/index.js",
"module": "./lib/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "npm run build-dist && npm run build-lib",
"build-dist": "rimraf -rf ./dist && npx tsc -p tsconfig.dist.json",
"build-lib": "rimraf -rf ./lib && npx tsc -p tsconfig.lib.json"
},
"author": "wangminghua",
"license": "ISC",
"dependencies": {
"reflect-metadata": "^0.1.13",
"typescript": "^5.2.2"
},
"devDependencies": {
"rimraf": "^5.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/WangMingHua111/di.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=16"
}
}