返回 reveal.js
package.json
根目录 / react / package.json
1 {
2 "name": "@revealjs/react",
3 "version": "0.2.1",
4 "description": "React wrapper for reveal.js",
5 "license": "MIT",
6 "homepage": "https://revealjs.com/react",
7 "author": {
8 "name": "Hakim El Hattab",
9 "email": "hakim.elhattab@gmail.com",
10 "web": "https://hakim.se"
11 },
12 "repository": {
13 "type": "git",
14 "url": "git://github.com/hakimel/reveal.js.git"
15 },
16 "type": "module",
17 "module": "dist/index.mjs",
18 "types": "dist/index.d.ts",
19 "exports": {
20 ".": {
21 "types": "./dist/index.d.ts",
22 "import": "./dist/index.mjs"
23 }
24 },
25 "scripts": {
26 "prepack": "npm run build",
27 "build": "vite build",
28 "test": "vitest run",
29 "test:watch": "vitest",
30 "demo": "npm run --prefix demo dev"
31 },
32 "peerDependencies": {
33 "react": ">=18",
34 "react-dom": ">=18",
35 "reveal.js": ">=5"
36 },
37 "devDependencies": {
38 "@testing-library/jest-dom": "^6.9.1",
39 "@testing-library/react": "^16.3.2",
40 "@types/react": "^19.2.14",
41 "@types/react-dom": "^19.2.3",
42 "@vitejs/plugin-react": "^6.0.1",
43 "jsdom": "^29.0.1",
44 "react": "^19.2.4",
45 "react-dom": "^19.2.4",
46 "reveal.js": "file:..",
47 "typescript": "^6.0.2",
48 "vite": "^8.0.3",
49 "vite-plugin-dts": "^4.5.4",
50 "vitest": "^4.1.2"
51 },
52 "overrides": {
53 "minimatch": ">=10.2.3"
54 },
55 "files": [
56 "dist"
57 ]
58 }
59
59 lines JSON