-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.56 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
{
"name": "bunny-sqlean",
"version": "0.0.5",
"private": false,
"type": "module",
"description": "sqlean.js for Edge Scripting for bunny.net 🐰",
"keywords": [
"BunnyCDN",
"bunny.net",
"bunny",
"cdn",
"bunny-launcher",
"typescript",
"edge-scripting",
"edge",
"scripting",
"database",
"sqlite",
"sqlite3",
"sqlean.js",
"wasm"
],
"homepage": "https://bunny-launcher.net/databases/sqlean/",
"bugs": "https://github.com/jlarmstrongiv/bunny-sqlean/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/jlarmstrongiv/bunny-sqlean.git"
},
"license": "AGPL-3.0-only",
"author": "John L. Armstrong IV",
"sideEffects": false,
"scripts": {
"build:dev": "NODE_ENV=development npx tsx src/bundler",
"build": "npx tsx src/bundler",
"patch": "npx patch-package @antonz/sqlean --exclude='nothing'",
"postinstall:local": "npx patch-package",
"prepublishOnly": "npm run build",
"pretest:deno": "npm run build:dev",
"pretest:node": "npm run build:dev",
"test:deno": "deno run src/test/index.test.ts",
"test:node": "npx tsx src/test/index.test.ts"
},
"main": "dist/index.js",
"files": [
"dist"
],
"devDependencies": {
"@antonz/sqlean": "3.47.1-rc1",
"@tsconfig/node20": "20.1.4",
"@types/fs-extra": "11.0.4",
"@types/node": "22.9.0",
"esbuild": "0.24.0",
"fs-extra": "11.2.0",
"patch-package": "8.0.0",
"tsx": "4.19.2",
"typescript": "5.6.3"
},
"packageManager": "npm@10.9.0",
"engines": {
"node": ">=20"
}
}