-
Notifications
You must be signed in to change notification settings - Fork 485
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.72 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.72 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
{
"private": true,
"name": "@react-native-async-storage/root",
"version": "0.0.1-dev",
"versionDocs": "3.0",
"scripts": {
"build": "turbo run build",
"build:android": "./scripts/build-native-lib.sh android",
"build:apple": "./scripts/build-native-lib.sh apple",
"build:js": "yarn workspace @react-native-async-storage/async-storage build",
"format": "concurrently 'yarn:format:*'",
"format:c": "clang-format -i $(git ls-files '*.cpp' '*.h' '*.m' '*.mm') --style file:.config/.clang-format",
"format:js": "prettier --write $(git ls-files '*.ts' '*.tsx' '*.json' '*.yml' 'README.md' 'docs/*.md' ':!docs/index.md' ':!docs/contributing.md' ':!docs/changelog.md' ':!docs/integrations/expo.md')",
"test:lint": "turbo run test:lint",
"test:ts": "turbo run test:ts",
"test:format": "prettier --check --log-level warn $(git ls-files '*.ts' '*.tsx' '*.json' '*.yml' 'README.md' 'docs/*.md' ':!docs/index.md' ':!docs/contributing.md' ':!docs/changelog.md' ':!docs/integrations/expo.md')",
"release:version": "./.github/scripts/setup-ci-git-user.sh && changeset version",
"release:publish": "./.github/scripts/setup-ci-git-user.sh && changeset publish",
"docs:dev": "mkdocs serve",
"docs:build": "mkdocs build"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"concurrently": "^8.2.2",
"eslint": "9.34.0",
"prettier": "3.6.2",
"turbo": "2.5.6",
"typescript": "5.9.2"
},
"engines": {
"node": "^22.18.0"
},
"packageManager": "yarn@4.9.4",
"workspaces": [
"packages/async-storage",
"packages/eslint-config",
"packages/expo-with-async-storage",
"examples/react-native",
"examples/web",
"examples/common-tests",
"examples/expo"
]
}