-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
66 lines (66 loc) · 1.75 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
{
"name": "@empathyco/x-react-wrapper",
"version": "4.1.2-alpha.0",
"description": "A proxy that transforms Vue components into React ones",
"author": "Empathy Systems Corporation S.L.",
"license": "Apache-2.0",
"homepage": "https://github.com/empathyco/x/tree/main/packages/react-wrapper#readme",
"keywords": [
"vue",
"react",
"wrapper"
],
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"dist/**/*",
"types/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/empathyco/x.git",
"directory": "packages/react-wrapper"
},
"engines": {
"node": ">=18"
},
"scripts": {
"serve": "vite serve tests/demo",
"build": "tsc",
"cypress:open": "cypress open --browser chrome",
"cypress:run": "cypress run --headless --browser chrome",
"lint": "eslint . --ext .ts,tsx",
"postbuild": "pnpm pack",
"prepublishOnly": "pnpm run build",
"test": "pnpm run test:unit && pnpm run test:e2e:ci",
"test:unit": "jest",
"test:e2e": "start-server-and-test serve http://localhost:1234 cypress:open",
"test:e2e:ci": "start-server-and-test serve http://localhost:1234 cypress:run"
},
"dependencies": {
"tslib": "~2.6.0"
},
"peerDependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0",
"vue": "^2.6.0"
},
"devDependencies": {
"@types/jest": "~27.5.0",
"@types/react": "~16.9.0",
"@types/react-dom": "~16.9.0",
"cypress": "~13.6.0",
"eslint-plugin-react": "~7.32.1",
"jest": "~27.5.0",
"react": "~16.9.0",
"react-dom": "~16.9.0",
"start-server-and-test": "~2.0.0",
"ts-jest": "~27.1.0",
"typescript": "~4.9.4",
"vite": "~4.5.0",
"vue": "~2.7.14"
},
"publishConfig": {
"access": "public"
}
}