-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.1 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
{
"name": "@rific/sync",
"version": "0.3.0",
"description": "Generic SQLite sync engine for Expo — schema management, upsert/delete, and cursor state persistence",
"keywords": [
"expo",
"sqlite",
"sync",
"offline-first",
"expo-sqlite"
],
"homepage": "https://github.com/jayrdeaton/Expo-Sync#readme",
"bugs": {
"url": "https://github.com/jayrdeaton/Expo-Sync/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jayrdeaton/Expo-Sync.git"
},
"license": "MIT",
"author": "Jay Deaton",
"sideEffects": false,
"type": "commonjs",
"exports": {
".": {
"react-native": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"react-native": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"!src/__tests__"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"build:watch": "tsup src/index.ts --format cjs,esm --dts --watch",
"fix": "eslint --fix",
"lint": "eslint",
"prepublishOnly": "npm run build",
"release": "git push --follow-tags",
"release:major": "npm version major && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:patch": "npm version patch && git push --follow-tags",
"test": "jest",
"test:watch": "jest --watchAll",
"typecheck": "tsc --noEmit",
"preversion": "npm run lint && npm test && npm run build"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@typescript-eslint/parser": "^8.59.3",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-package-json": "^1.0.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^13.0.0",
"jest": "^30.4.2",
"prettier": "^3.8.3",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"tsup": "^8.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3"
},
"publishConfig": {
"access": "public"
}
}