-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 835 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
34
35
36
37
38
39
40
41
42
{
"name": "effector-history",
"version": "0.3.11",
"author": "Anton Kosykh",
"repository": {
"type": "git",
"url": "https://github.com/kelin2025/effector-history"
},
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "vite build",
"prepare": "npm run build",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"peerDependencies": {
"effector": "^22"
},
"devDependencies": {
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-plugin-dts": "^2.1.0",
"vitest": "^0.29.2"
}
}