-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.18 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.18 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
{
"name": "@effect-native/libsqlite",
"version": "3.50.2-1",
"description": "Pure-Nix libsqlite3 (.dylib/.so) for extension loading",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"react-native": "./dist/react-native.js",
"default": "./dist/index.js"
},
"./react-native": {
"import": "./dist/react-native.js",
"types": "./dist/react-native.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "nix build .#libsqlite3",
"bundle-lib": "nix run .#build-all-platforms",
"get-path": "nix run .#print-path",
"check": "nix flake check",
"test": "npm run check",
"test:docker": "if command -v docker >/dev/null 2>&1 && docker info >/dev/null 2>&1; then docker build -t libsqlite-test . && docker run --rm libsqlite-test; else echo '⚠️ Docker not running - skipping Docker tests'; fi",
"test:vps": "./scripts/verify-vps.sh",
"sync-version": "tsx scripts/sync-version.ts",
"build-production": "tsx scripts/build-production.ts",
"preversion": "npm run sync-version",
"version": "git add package.json",
"prepublishOnly": "npm run build-production && npm run test && npm run test:docker && npm run test:vps"
},
"bin": {
"@effect-native/libsqlite": "./dist/bin/sqlite-lib-path.js",
"sqlite-lib-path": "./dist/bin/sqlite-lib-path.js"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/react-native.js",
"dist/react-native.d.ts",
"dist/lib/",
"dist/bin/",
"README.md"
],
"keywords": [
"sqlite",
"sqlite3",
"libsqlite3",
"nix",
"extension",
"dylib",
"shared-library"
],
"author": "Tom Aylott",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/effect-native/libsqlite.git"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {},
"dependencies": {},
"devDependencies": {
"typescript": "^5.7.2",
"tsx": "^4.19.2",
"@types/node": "^22.0.0",
"effect": "^3.10.0",
"@effect/platform": "^0.66.3",
"@effect/platform-bun": "^0.46.0",
"@types/bun": "latest"
},
"publishConfig": {
"access": "public"
}
}