-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.64 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
100
101
102
103
104
105
106
{
"name": "@actualwave/react-native-codeditor",
"version": "1.1.0",
"description": "CodeMirror 6 code editor for React Native, embedded in a WebView with a full bidirectional RPC bridge. Offline, no CDN required.",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
"exports": {
".": {
"source": "./src/index.tsx",
"types": "./lib/typescript/src/index.d.ts",
"default": "./lib/module/index.js"
},
"./app.plugin": "./app.plugin.js",
"./app.plugin.js": "./app.plugin.js",
"./package.json": "./package.json"
},
"files": [
"src/assets",
"lib",
"app.plugin.js",
"react-native.config.js",
"!lib/module/assets",
"!lib/typescript/src/assets",
"!**/*.map",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"clean": "del-cli lib",
"copy-assets": "node scripts/copy-assets.js",
"prepare": "bob build",
"typecheck": "tsc"
},
"keywords": [
"react-native",
"ios",
"android"
],
"repository": {
"type": "git",
"url": "git+https://github.com/burdiuz/react-native-codeditor.git"
},
"author": "Oleg Galaburda <burdiuz@gmail.com> (https://github.com/burdiuz)",
"license": "MIT",
"bugs": {
"url": "https://github.com/burdiuz/react-native-codeditor/issues"
},
"homepage": "https://github.com/burdiuz/react-native-codeditor#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@actualwave/codemirror-package": "^0.1.0",
"@react-native/assets-registry": "^0.85.3",
"@react-native/babel-preset": "0.85.0",
"@react-native/js-polyfills": "^0.85.3",
"@react-native/metro-config": "^0.85.3",
"@react-native/virtualized-lists": "^0.83.6",
"@types/react": "^19.2.0",
"del-cli": "^7.0.0",
"patch-package": "^8.0.1",
"react": "19.2.0",
"react-native": "0.83.6",
"react-native-builder-bob": "^0.41.0",
"turbo": "^2.8.21",
"typescript": "^6.0.2"
},
"dependencies": {
"@actualwave/webview-interface": "^0.0.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-webview": ">=11.0.0"
},
"workspaces": [
"example"
],
"packageManager": "yarn@4.11.0",
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"module",
{
"esm": true
}
],
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"create-react-native-library": {
"type": "library",
"languages": "js",
"tools": [],
"version": "0.62.0"
}
}