-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.87 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.87 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
{
"name": "@deque/cauldron-react",
"version": "7.1.0",
"license": "MPL-2.0",
"description": "Fully accessible react components library for Deque Cauldron",
"homepage": "https://cauldron.dequelabs.com/",
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"style": "lib/cauldron.css",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"build": "pnpm build:lib && pnpm build:css",
"prebuild:lib": "node scripts/buildIconTypes.js",
"build:lib": "rollup -c",
"build:css": "postcss --output=lib/cauldron.css src/index.css",
"typecheck": "tsc --noEmit --skipLibCheck",
"dev": "concurrently 'pnpm build:css --watch' 'rollup -c --watch'",
"prepublishOnly": "NODE_ENV=production pnpm build",
"test": "jest --maxWorkers=1 --coverage",
"figma:parse": "figma connect parse",
"figma:publish": "figma connect publish",
"figma:publish:dry-run": "figma connect publish --dry-run"
},
"dependencies": {
"@floating-ui/dom": "^1.0.0",
"@floating-ui/react-dom": "^2.1.2",
"classnames": "^2.2.6",
"focusable": "^2.3.0",
"keyname": "^0.1.0",
"react-aria-components": "^1.13.0",
"react-id-generator": "^3.0.1",
"react-syntax-highlighter": "^16.1.1",
"tslib": "^2.4.0"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/plugin-proposal-export-default-from": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@babel/preset-react": "^7.29.7",
"@babel/preset-typescript": "^7.29.7",
"@figma/code-connect": "^1.4.5",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-dynamic-import-vars": "^1.4.2",
"@rollup/plugin-typescript": "^11.1.2",
"@svgr/rollup": "^6.1.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/classnames": "^2.2.10",
"@types/jest": "^29.5.11",
"@types/jest-axe": "^3.5.4",
"@types/node": "^17.0.42",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/sinon": "^10",
"autoprefixer": "^10.5.0",
"babel-plugin-module-resolver": "^5.0.3",
"babel-plugin-transform-export-extensions": "^6.22.0",
"concurrently": "^5.3.0",
"jest": "^29.7.0",
"jest-axe": "^10.0.0",
"jest-environment-jsdom": "^29.7.0",
"nyc": "^15.0.1",
"postcss": "^8.5.15",
"postcss-cli": "^11.0.1",
"postcss-import": "^16.1.1",
"postcss-loader": "^8.2.1",
"prop-types": "^15.8.1",
"react": "^19",
"react-dom": "^19",
"rollup": "^2.23.0",
"sinon": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "~5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dequelabs/cauldron.git"
},
"peerDependencies": {
"react": ">=16.6 <20",
"react-dom": ">=16.6 <20"
}
}