This repository was archived by the owner on Jan 26, 2025. It is now read-only.
forked from portabletext/react-native-portabletext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.65 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.65 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@portabletext/react-native",
"version": "0.0.5",
"type": "module",
"description": "*Experimental*: Render Portable Text with React Native",
"main": "./dist/react-native-portable-text.esm.js",
"module": "./dist/react-native-portable-text.esm.js",
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"lint": "eslint . && tsc --noEmit",
"prepublishOnly": "npm run build",
"build": "vite build -c ./vite.config.cjs",
"test": "jest",
"prettify": "prettier --write src/**/*.ts src/**/*.tsx test/**/*.ts test/**/*.tsx",
"prettify-check": "prettier --check src/**/*.ts src/**/*.tsx test/**/*.ts test/**/*.tsx"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/portabletext/react-native-portabletext.git"
},
"keywords": [
"portable-text"
],
"author": "Sanity.io <hello@sanity.io>",
"license": "MIT",
"dependencies": {
"@portabletext/react": "^1.0.0",
"@portabletext/types": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.37",
"@types/react-native": "^0.66.12",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"babel-jest": "^27.4.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-sanity": "^5.1.0",
"eslint-plugin-react": "^7.27.1",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-native": "^0.66.4",
"react-test-renderer": "^17.0.2",
"typescript": "^4.5.4",
"vite": "^2.7.4",
"vite-dts": "^1.0.4"
},
"peerDependencies": {
"react": "^17 || ^18",
"react-native": "^0.66 || ^0.67 || ^0.68 || ^0.69 || ^0.70 || ^0.71"
},
"bugs": {
"url": "https://github.com/portabletext/react-native-portabletext/issues"
},
"homepage": "https://github.com/portabletext/react-native-portabletext#readme",
"prettier": {
"semi": false,
"printWidth": 100,
"bracketSpacing": false,
"singleQuote": true
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module",
"ecmaFeatures": {
"modules": true
}
},
"extends": [
"sanity",
"sanity/react",
"sanity/typescript",
"prettier"
],
"ignorePatterns": [
"lib/**/"
]
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"/node_modules/(?!(@react-native|react-native)).*/"
],
"snapshotFormat": {
"printBasicPrototype": false
}
}
}