-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
100 lines (100 loc) · 2.86 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "atomic-router-react",
"publishConfig": {
"access": "public"
},
"version": "0.0.0-this-version-will-be-set-from-ci",
"author": "Anton Kosykh",
"repository": {
"type": "git",
"url": "https://github.com/atomic-router/react"
},
"contributors": [
"Anton Kosykh",
"Sergey Sova <[email protected]>"
],
"license": "MIT",
"main": "dist/atomic-router.js",
"module": "dist/atomic-router.mjs",
"unpkg": "dist/atomic-router.umd.js",
"types": "dist/atomic-router.d.ts",
"exports": {
".": {
"import": "./dist/atomic-router.mjs",
"require": "./dist/atomic-router.js",
"node": "./dist/atomic-router.js",
"default": "./dist/atomic-router.mjs"
},
"./package.json": "./package.json",
"./scope": {
"types": "./scope.d.ts",
"import": "./dist/scope/atomic-router.mjs",
"require": "./dist/scope/atomic-router.js",
"node": "./dist/scope/atomic-router.js",
"default": "./dist/scope/atomic-router.mjs"
}
},
"files": [
"dist",
"scope.d.ts",
"scope.js"
],
"engines": {
"node": ">=14"
},
"scripts": {
"test": "jest -i",
"test:watch": "jest --watch -i",
"lint": "prettier --check \"{src,test}/**/*.{ts,tsx,js,jsx,md}\"",
"format": "prettier --write \"{src,test}/**/*.{ts,tsx,js,jsx,md}\"",
"build": "rollup -c",
"prepare": "pnpm build",
"dev": "cd ./playground && vite"
},
"dependencies": {
"clsx": "^1.1.1"
},
"peerDependencies": {
"atomic-router": "^0.10.0",
"effector": "^22.8.8 || ^23",
"effector-react": "^22.1.0 || ^23",
"react": "^17 || ^18"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/plugin-transform-class-properties": "^7.18.6",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-transform-object-rest-spread": "^7.18.9",
"@babel/plugin-transform-optional-chaining": "^7.18.9",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@types/react": "^17 || ^18",
"@vitejs/plugin-react": "^4.2.1",
"atomic-router": "^0.9.4",
"effector": "^23.1.0",
"effector-react": "^23.1.0",
"history": "^5.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.2",
"publint": "^0.2.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.9.5",
"rollup-plugin-dts": "^6.1.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.0.11"
},
"packageManager": "[email protected]"
}