-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.1 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.1 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
{
"name": "@learningmap/web-component",
"version": "0.3.8",
"author": "Mike Barkmin",
"homepage": "https://github.com/openpatch/learningmap#readme",
"license": "MIT",
"type": "module",
"main": "dist/index.umd.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.umd.js"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openpatch/learningmap.git",
"directory": "packages/web-component"
},
"bugs": {
"url": "https://github.com/openpatch/learningmap/issues"
},
"scripts": {
"version": "pnpm build",
"lint": "tsc --noEmit",
"build": "vite build"
},
"dependencies": {
"@learningmap/learningmap": "workspace:*",
"@r2wc/react-to-web-component": "^2.1.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tslib": "^2.8.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.4",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"@vitejs/plugin-react": "^5.0.4",
"vite": "^7.1.9"
}
}