-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.02 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
{
"name": "@powersync/attachments-storage-react-native",
"version": "0.0.2",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/powersync-ja/powersync-js.git"
},
"author": "POWERSYNC",
"license": "Apache-2.0",
"homepage": "https://docs.powersync.com",
"bugs": {
"url": "https://github.com/powersync-ja/powersync-js/issues"
},
"description": "React Native file system storage adapters for PowerSync attachments",
"type": "module",
"main": "./dist/index.cjs",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": {
"default": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"require": {
"default": "./dist/index.cjs",
"types": "./dist/index.d.cts"
}
}
},
"files": [
"lib",
"dist",
"src"
],
"scripts": {
"build": "tsc -b && rollup --config",
"build:prod": "tsc -b --sourceMap false && rollup --config",
"clean": "rm -rf lib dist tsconfig.tsbuildinfo",
"watch": "tsc -b -w",
"test:exports": "attw --pack ."
},
"peerDependencies": {
"@powersync/common": "workspace:^1.53.2",
"expo-file-system": ">=19.0.0",
"@dr.pogodin/react-native-fs": "^2.25.0"
},
"peerDependenciesMeta": {
"expo-file-system": {
"optional": true
},
"@dr.pogodin/react-native-fs": {
"optional": true
}
},
"dependencies": {
"base64-arraybuffer": "^1.0.2"
},
"devDependencies": {
"@powersync/common": "workspace:*",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@dr.pogodin/react-native-fs": "^2.36.1",
"expo-file-system": "^19.0.21",
"rollup": "4.14.3",
"rollup-plugin-dts": "^6.1.0",
"typescript": "catalog:"
},
"keywords": [
"powersync",
"attachments",
"react-native",
"expo",
"file-system",
"offline-first"
]
}