-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.69 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": "react-native-nitro-sqlite-vec",
"version": "9.7.0",
"description": "Vector search (sqlite-vec) for react-native-nitro-sqlite. Native sqlite-vec is statically linked into the core's single sqlite3 — no second SQLite, no runtime extension loading.",
"source": "./src/index",
"react-native": "./src/index",
"main": "./src/index",
"types": "./src/index",
"files": [
"src",
"cpp",
"RNNitroSqliteVec.podspec",
"react-native.config.js",
"README.md"
],
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\" --fix",
"release": "release-it",
"prepublishOnly": "bun typecheck"
},
"keywords": [
"react-native",
"sqlite",
"sqlite-vec",
"vector",
"vector-search",
"nitro-modules",
"ios",
"android"
],
"repository": {
"type": "git",
"url": "git+https://github.com/margelo/react-native-nitro-sqlite.git"
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"peerDependencies": {
"react-native-nitro-sqlite": ">=9.0.0"
},
"devDependencies": {
"react-native-nitro-sqlite": "9.7.0",
"typescript": "^5.8.3"
},
"release-it": {
"npm": {
"publish": true,
"skipChecks": true,
"versionArgs": [
"--allow-same-version"
]
},
"git": false,
"github": {
"release": false
},
"hooks": {
"before:init": "bun typecheck"
},
"plugins": {
"@release-it/bumper": {
"out": {
"file": "package.json",
"path": [
"version",
"devDependencies.react-native-nitro-sqlite"
]
}
}
}
}
}