-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.05 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "superdi",
"version": "0.0.1-alpha.2",
"description": "Super DI is a 100% type safe di library.",
"scripts": {
"prebuild": "rm -rf ./dist",
"pretest": "tsc --noEmit",
"test": "jest -c ./jest.config.js",
"build": "rollup -c",
"publish:alpha": "npm --registry=https://registry.npmjs.org publish --tag alpha --access public"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"<4.5": {
"esm/*": [
"ts3.4/*"
],
"*": [
"ts3.4/*"
]
}
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": {
"default": "./dist/esm/index.mjs"
},
"module": "./dist/esm/index.js",
"default": "./dist/index.js"
},
"./*": {
"types": "./*.d.ts",
"import": {
"types": "./dist/esm/*.d.mts",
"default": "./dist/esm/*.mjs"
},
"module": "./dist/esm/*.js",
"default": "./dist/*.js"
}
},
"files": [
"dist",
"README-cn.md"
],
"engines": {
"node": ">=14.21.3"
},
"volta": {
"node": "18.16.1",
"pnpm": "8.6.6"
},
"keywords": [],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/piex/superdi.git"
},
"bugs": {
"url": "https://github.com/piex/superdi/issues"
},
"homepage": "https://github.com/piex/superdi",
"devDependencies": {
"@babel/plugin-transform-typescript": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"@types/jest": "29.5.2",
"@typescript-eslint/eslint-plugin": "5.59.11",
"@typescript-eslint/parser": "5.59.11",
"eslint": "8.42.0",
"jest": "29.5.0",
"rollup": "3.25.1",
"ts-jest": "29.1.0",
"tslib": "2.5.3",
"typescript": "5.1.3"
}
}