-
Notifications
You must be signed in to change notification settings - Fork 237
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.97 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.97 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": "@courselit/components-library",
"version": "0.57.10",
"description": "A library of React components for CourseLit LMS.",
"private": true,
"keywords": [
"react",
"components",
"courselit"
],
"author": "Team CourseLit <hi@codelit.dev>",
"homepage": "https://github.com/codelitdev/courselit#readme",
"license": "MIT",
"types": "dist/index.d.ts",
"exports": {
".": "./dist",
"./styles.css": "./dist/index.css",
"./icons": "./dist/icons.mjs"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codelitdev/courselit.git"
},
"scripts": {
"test": "echo \"Error: run tests from root\" && exit 1",
"clean": "rimraf dist/",
"prepublishOnly": "pnpm run build",
"build": "tsup",
"tsc:build": "tsc",
"dev": "tsup --watch",
"check-types": "tsc --noEmit"
},
"bugs": {
"url": "https://github.com/codelitdev/courselit/issues"
},
"devDependencies": {
"@types/react": "^17.0.43",
"eslint": "^8.57.0",
"rimraf": "^4.1.1",
"tailwind-config": "workspace:^",
"tsconfig": "workspace:^",
"tsup": "6.6.0",
"typescript": "^5.1.6",
"typescript-eslint": "^7.4.0"
},
"peerDependencies": {
"next": "*",
"react": "*"
},
"gitHead": "fca7d2f8455c835f1c185a1ebc8513c6269ebe5b",
"dependencies": {
"@courselit/common-models": "workspace:^",
"@courselit/icons": "workspace:^",
"@courselit/page-models": "workspace:^",
"@courselit/text-editor": "workspace:^",
"@courselit/utils": "workspace:^",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.1.11",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-form": "^0.0.3",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.0.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"currency-symbol-map": "^5.1.0",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.309.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"tus-js-client": "^4.3.1"
}
}