-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.82 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
{
"name": "av1-c",
"version": "1.9.3",
"description": "AV1 React Component Library",
"author": "@aviarytech",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/aviarytech/av1-c.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"dependencies": {
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@headlessui/react": "^2.2.0",
"@monaco-editor/react": "^4.6.0",
"@radix-ui/react-tooltip": "^1.1.7",
"@uiw/react-codemirror": "^4.23.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"jsonld": "^8.3.3",
"lucide-react": "^0.427.0",
"monaco-editor": "^0.52.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"tailwind-merge": "^2.5.5"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tailwindcss/cli": "^4.0.1",
"@tailwindcss/postcss": "^4.0.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.20",
"bun-types": "^1.2.1",
"postcss": "^8.5.1",
"postcss-cli": "^11.0.0",
"semantic-release": "^22.0.0",
"tailwindcss": "^4.0.1",
"typescript": "^4.9.5",
"vite": "^5.0.12"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"docs:dev": "bun run --watch src/docs/server.ts",
"docs:build": "bun build src/docs/index.tsx --outdir dist/docs && cp src/docs/index.html dist/docs/index.html",
"docs:preview": "bun run src/docs/server.ts --prod"
},
"keywords": [
"react",
"components",
"ui"
]
}