-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.02 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.02 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "flexdi",
"version": "0.4.1",
"description": "Framework-agnostic dependency injection that adapts to your favorite UI library",
"repository": {
"type": "git",
"url": "https://github.com/AndreyShashlovDev/flexdi.git"
},
"homepage": "https://github.com/AndreyShashlovDev/flexdi",
"bugs": {
"url": "https://github.com/AndreyShashlovDev/flexdi/issues"
},
"main": "./dist/core/index.cjs",
"module": "./dist/core/index.mjs",
"types": "./dist/types/core/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/types/core/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./react": {
"types": "./dist/types/react/index.d.ts",
"import": "./dist/react/index.mjs",
"require": "./dist/react/index.cjs"
},
"./react-native": {
"types": "./dist/types/react-native/index.d.ts",
"import": "./dist/react-native/index.mjs",
"require": "./dist/react-native/index.cjs"
},
"./vue3": {
"types": "./dist/types/vue3/index.d.ts",
"import": "./dist/vue3/index.mjs",
"require": "./dist/vue3/index.cjs"
}
},
"typesVersions": {
"*": {
"*": [
"dist/types/core/index.d.ts"
],
"react": [
"dist/types/react/index.d.ts"
],
"react-native": [
"dist/types/react-native/index.d.ts"
],
"vue3": [
"dist/types/vue3/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build": "vite build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "yarn run build",
"publish:dev": "yalc publish",
"release": "semantic-release"
},
"keywords": [],
"author": "",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^6.0.0 || ^7.0.0",
"vue": "^3.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"vue": {
"optional": true
},
"rxjs": {
"optional": true
}
},
"vite": {
"optimizeDeps": {
"disabled": true
}
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^18.15.11",
"@types/react": "^19.1.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-vue": "^5.2.3",
"jsdom": "^26.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-test-renderer": "^19.1.0",
"reflect-metadata": "^0.2.2",
"rimraf": "^5.0.0",
"rxjs": "^7.8.2",
"semantic-release": "^24.2.3",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
"vite": "^6.2.5",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.1.1",
"vue": "^3.5.13"
}
}