-
Notifications
You must be signed in to change notification settings - Fork 581
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 946 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 946 Bytes
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
{
"name": "react-native-skia-monorepo",
"version": "1.0.0",
"private": true,
"license": "MIT",
"licenseFilename": "LICENSE.md",
"readmeFilename": "README.md",
"author": "Shopify Inc.",
"contributors": [
{
"name": "Christian Falch",
"email": "christian.falch@gmail.com"
},
{
"name": "William Candillon",
"email": "wcandillon@gmail.com"
}
],
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"lint": "turbo run lint",
"tsc": "turbo run tsc",
"test": "turbo run test",
"build:android": "turbo run build:android",
"build:ios": "turbo run build:ios",
"build:macos": "turbo run build:macos",
"build": "turbo run build",
"pod:install": "turbo run pod:install"
},
"packageManager": "yarn@3.6.4",
"resolutions": {
"@webgpu/types": "^0.1.69"
},
"devDependencies": {
"react-native-test-app": "^4.2.0",
"turbo": "^2.1.1"
}
}