-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.15 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.15 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
{
"name": "react-native-background-workers",
"version": "0.1.3",
"description": "High-level Web Workers API for React Native New Architecture",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./plugin": "./plugin/index.js",
"./package.json": "./package.json"
},
"files": [
"lib",
"plugin"
],
"scripts": {
"build": "rm -rf lib && tsc",
"build:watch": "rm -rf lib && tsc --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src example",
"lint:fix": "eslint --cache --fix src example",
"prepublishOnly": "yarn lint && yarn build",
"start": "cd example && npx react-native start",
"ios": "cd example && npx react-native run-ios",
"android": "cd example && npx react-native run-android"
},
"keywords": [
"react-native",
"background-workers",
"worklets",
"multithreading",
"web-workers",
"new-architecture",
"ios",
"android"
],
"repository": {
"type": "git",
"url": "git+https://github.com/DimaIvashchuk/react-native-background-workers.git"
},
"author": "Dmytro Ivashchuk <dmytro.ivashchuk.s@gmail.com> (https://github.com/DimaIvashchuk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/DimaIvashchuk/react-native-background-workers/issues"
},
"homepage": "https://github.com/DimaIvashchuk/react-native-background-workers#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@react-native/babel-preset": "0.85.0",
"@stylistic/eslint-plugin": "^3.1.0",
"@types/react": "^19.2.0",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"eslint": "^9.18.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.1.0",
"react": "19.2.3",
"react-native": "0.85.0",
"react-native-worklets": "^0.8.1",
"typescript": "^5.9.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-worklets": ">=0.8.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@1.22.22"
}