-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 2.13 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
67
68
69
70
71
72
73
74
{
"name": "editorjs-viewer-native",
"version": "1.0.1",
"description": "A React Native viewer for JSON created by EditorJs",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist/**/*"
],
"keywords": [
"react-native",
"ios",
"android",
"editorjs",
"mobile"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Hidekih/editorjs-viewer-native.git"
},
"author": "Alexandre Hideki Siroma",
"license": "MIT",
"scripts": {
"dev": "npm set init.main \"node_modules/expo/AppEntry.js\" && expo start",
"test": "jest --no-cache",
"build": "rm -rf dist && tsup src/index.tsx --format esm,cjs --dts --minify --external react,react-native",
"update:readme": "npm publish --update-readme",
"pub": "jest && tsup src/index.tsx --format esm,cjs --dts --minify --external react,react-native && npm publish --access public"
},
"dependencies": {
"html-entities": "^2.3.3"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@testing-library/jest-native": "^5.4.1",
"@testing-library/react-native": "^11.5.0",
"@types/jest": "^29.2.6",
"@types/react": "^18.0.26",
"@types/react-native": "^0.70.8",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.31.0",
"eslint-plugin-react": "^7.31.11",
"expo": "^47.0.13",
"jest": "^29.3.1",
"metro-react-native-babel-preset": "^0.74.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native": "^0.71.1",
"react-native-web": "^0.18.12",
"react-test-renderer": "^18.2.0",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"bugs": {
"url": "https://github.com/Hidekih/editorjs-viewer-native/issues"
},
"homepage": "https://github.com/Hidekih/editorjs-viewer-native#readme",
"jest": {
"preset": "react-native",
"testEnvironment": "node",
"clearMocks": true,
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
]
}
}