-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.11 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.11 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
{
"name": "@weavy/uikit-react",
"version": "31.1.0",
"author": "Weavy",
"description": "React components UI-kit for Weavy",
"homepage": "https://github.com/weavy/weavy-uikit-react",
"license": "MIT",
"type": "module",
"files": [
"dist",
"lib",
"*.json",
"*.md"
],
"main": "./dist/build/weavy.es5.umd.js",
"module": "./dist/build/weavy.es5.esm.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"node": {
"import": "./dist/build/weavy.mjs",
"require": "./dist/build/weavy.bundle.js"
},
"types": "./dist/types/index.d.ts",
"import": "./dist/build/weavy.mjs",
"require": "./dist/build/weavy.cjs",
"default": "./dist/build/weavy.umd.js"
}
},
"scripts": {
"clean": "rimraf dist/**/* --glob",
"prepack": "run-s clean build",
"start": "run-p dev",
"dev": "vite --config=dev/vite.config.ts",
"prebuild": "tsc --p ./dev/tsconfig.build.json",
"build": "run-s build:*",
"build:esm": "vite build --config=dev/vite.config.ts",
"build:legacy": "vite build --config=dev/vite.config.legacy.ts",
"lint": "eslint lib"
},
"dependencies": {
"@lit/react": "^1.0.8",
"@weavy/uikit-web": "^31.1.0"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"devDependencies": {
"@babel/preset-env": "^7.29.2",
"@babel/preset-react": "^7.28.5",
"@eslint/js": "^9.39.2",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/node": "^22.19.15",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^5.2.0",
"dotenv": "^17.3.1",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"npm-run-all": "^4.1.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.1.3",
"rollup-preserve-directives": "^1.1.3",
"sass": "^1.98.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vite": "~7.1.12",
"vite-plugin-dts": "^4.5.4"
}
}