-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.99 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.99 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
{
"name": "react-accordion-ts",
"version": "1.3.0",
"description": "A ReactJS collapsible component",
"keywords": [
"Widget",
"Accordion",
"Collapsible",
"React Component",
"React Accordion",
"Accordion Widget",
"React Collapsible",
"Collapsible Widget"
],
"homepage": "https://react-accordion-ts.atanas.info",
"bugs": {
"url": "https://github.com/scriptex/react-accordion-ts/issues",
"email": "hi@atanas.info"
},
"license": "MIT",
"author": "Atanas Atanasov <hi@atanas.info> (https://atanas.info)",
"funding": "https://github.com/sponsors/scriptex",
"main": "dist/index.js",
"style": "src/panel.css",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "github:scriptex/react-accordion-ts"
},
"scripts": {
"clear": "rm -rf dist",
"start": "tsc -w",
"build": "yarn clear && tsc --build tsconfig.json",
"test": "jest",
"lint": "eslint",
"deduplicate": "yarn-deduplicate",
"prod": "yarn deduplicate && yarn lint && yarn build && yarn test"
},
"dependencies": {},
"devDependencies": {
"@testing-library/dom": "10.4.1",
"@testing-library/react": "16.3.2",
"@types/jest": "30.0.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.57.0",
"@typescript-eslint/parser": "8.57.0",
"cssnano": "7.1.3",
"eslint": "10.0.3",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jest": "29.15.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"globals": "17.4.0",
"jest": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"postcss": "8.5.8",
"react": "19.2.4",
"react-dom": "19.2.4",
"ts-jest": "29.4.6",
"tslib": "2.8.1",
"typescript": "5.9.3",
"yarn-deduplicate": "6.0.2"
},
"peerDependencies": {
"react": "^16.9.0 || ^17 || ^18 || ^19",
"react-dom": "^16.9.0 || ^17 || ^18 || ^19"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$"
}
}