-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.26 KB
/
package.json
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
{
"name": "reablocks-docs-theme",
"version": "1.0.2",
"description": "A Nextra theme for documentation reablocks site.",
"repository": "https://github.com/reaviz/reablocks-docs-theme",
"license": "MIT",
"exports": {
"./style.css": "./style.css",
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.mts"
}
},
"types": "./dist/index.d.mts",
"files": [
"dist",
"style.css"
],
"scripts": {
"build": "tsup",
"build:all": "pnpm build && pnpm build:tailwind",
"build:tailwind": "pnpm postcss css/styles.css -o style.css --verbose",
"clean": "rm -rf ./dist ./style.css",
"dev": "concurrently \"pnpm dev:layout\" \"pnpm dev:tailwind\"",
"dev:layout": "tsup --watch",
"dev:tailwind": "TAILWIND_MODE=watch pnpm postcss css/styles.css -o style.css --watch",
"prepublishOnly": "pnpm build:all",
"test": "echo ❗ No tests, previous tests were moved to the `nextra` package",
"types": "tsup --dts-only",
"types:check": "tsc --noEmit"
},
"peerDependencies": {
"next": ">=9.5.3",
"react": ">=16.13.1",
"react-dom": ">=16.13.1"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@popperjs/core": "^2.11.8",
"clsx": "^2.0.0",
"escape-string-regexp": "^5.0.0",
"flexsearch": "^0.7.31",
"focus-visible": "^5.2.0",
"git-url-parse": "^13.1.0",
"intersection-observer": "^0.12.2",
"match-sorter": "^6.3.1",
"next-seo": "^6.0.0",
"next-themes": "^0.2.1",
"nextra": "^2.13.4",
"scroll-into-view-if-needed": "^3.1.0",
"zod": "^3.22.3"
},
"devDependencies": {
"@tailwindcss/nesting": "^0.0.0-insiders.565cd3e",
"@testing-library/react": "^14.0.0",
"@types/flexsearch": "^0.7.3",
"@types/git-url-parse": "^9.0.1",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^3.0.1",
"concurrently": "^8.0.0",
"jsdom": "^23.0.0",
"next": "^13.5.6",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"postcss-lightningcss": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.3",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^0.34.0"
},
"sideEffects": [
"./src/polyfill.ts"
]
}