-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.64 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.64 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
{
"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": "git+https://github.com/atomic-router/react.git"
},
"contributors": [
"Anton Kosykh",
"Sergey Sova <mail@sergeysova.com>"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"default": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"test": "tsc --noEmit && vitest run && publint ./",
"test:only": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest --watch",
"lint": "prettier --check \"{src,test}/**/*.{ts,tsx,js,jsx,md}\"",
"format": "prettier --write \"{src,test}/**/*.{ts,tsx,js,jsx,md}\"",
"build": "tsup",
"prepare": "pnpm build",
"dev": "cd ./playground && vite"
},
"dependencies": {
"clsx": "^2.1.1"
},
"peerDependencies": {
"atomic-router": "^0.12.0",
"effector": "^22.8.8 || ^23",
"effector-react": "^22.1.0 || ^23",
"react": "^17 || ^18 || ^19"
},
"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",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^16.3.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/jest": "^29.5.11",
"@types/react": "^17 || ^18",
"@vitejs/plugin-react": "^4.2.1",
"atomic-router": "^0.12.0",
"effector": "^23.3.0",
"effector-react": "^23.3.0",
"history": "^5.3.0",
"jsdom": "^26.1.0",
"prettier": "^3.5.3",
"publint": "^0.3.12",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tslib": "^2.6.2",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.1.3"
},
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39"
}