-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "atomic-router-forest",
"version": "0.2.0",
"author": "Sergey Sova <[email protected]> (https://sova.sh)",
"repository": {
"type": "git",
"url": "https://github.com/atomic-router/forest"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsup src/index.tsx --watch",
"test": "jest -i",
"test:watch": "jest --watch -i",
"build": "npm run test && tsup src/index.ts --minify --dts --format esm,cjs --legacy-output",
"prepare": "npm run build"
},
"peerDependencies": {
"atomic-router": "^0.10.1",
"effector": "^22.8.8 || ^23",
"forest": "^0.21"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@testing-library/dom": "^8.16.0",
"@testing-library/jest-dom": "^5.16.4",
"@types/jest": "^28.1.6",
"atomic-router": "^0.10.1",
"effector": "^22.8.8 || ^23",
"forest": "^0.21.2",
"history": "^5.3.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.1",
"tslib": "^2.4.0",
"tsup": "^6.2.0",
"typescript": "^4.6.4"
}
}