-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"name": "react-to-webcomponent",
"version": "2.0.0",
"description": "Convert React components to native Web Components.",
"homepage": "https://www.bitovi.com/frontend-javascript-consulting/react-consulting",
"author": "Bitovi",
"license": "MIT",
"keywords": [
"React",
"Web Component"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bitovi/react-to-web-component.git"
},
"type": "module",
"main": "./dist/react-to-webcomponent.cjs",
"module": "./dist/react-to-webcomponent.js",
"types": "./dist/react-to-webcomponent.d.ts",
"exports": {
".": {
"require": "./dist/react-to-webcomponent.cjs",
"import": "./dist/react-to-webcomponent.js",
"types": "./dist/react-to-webcomponent.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src"
],
"scripts": {
"typecheck": "tsc --noEmit",
"eslint": "eslint vite.config.ts src",
"prettier": "prettier --check vite.config.ts src",
"depcheck": "depcheck .",
"dev": "vite",
"test": "vitest",
"test:react18": "chmod +x ./test && ./test",
"test:ci": "npm run test:react18",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf tsconfig.tsbuildinfo dist",
"build": "vite build"
},
"dependencies": {
"@r2wc/core": "^1.0.0"
},
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
}
}