-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.56 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
{
"name": "flow-stack",
"version": "0.2.3",
"description": "A React library for stack-based navigation inside external containers.",
"keywords": [
"flow-stack",
"react",
"navigation",
"flow",
"stack",
"flowstack"
],
"license": "MIT",
"author": {
"name": "Christopher Alexander",
"email": "clalex005@gmail.com",
"url": "https://github.com/clalexander"
},
"homepage": "https://github.com/clalexander/flow-stack#readme",
"bugs": {
"url": "https://github.com/clalexander/flow-stack/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clalexander/flow-stack.git"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"CHANGELOG.md"
],
"packageManager": "pnpm@10.34.4",
"engines": {
"node": ">=20.19.0",
"pnpm": ">=10.0.0 <11"
},
"sideEffects": false,
"scripts": {
"build": "tsdown",
"clean": "rimraf dist",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"peerDependencies": {
"react": ">=18 <20",
"react-dom": ">=18 <20"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"@vitest/coverage-v8": "^3.2.6",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-sort-exports": "^0.9.1",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"prettier": "3.9.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.1.3",
"semantic-release": "^25.0.5",
"tsdown": "^0.22.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.1",
"vitest": "^3.2.6"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest",
"access": "public"
}
}