-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.87 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
{
"name": "@npiesco/absurder-sql",
"version": "0.1.28",
"description": "High-performance SQLite for browsers with IndexedDB or Hybrid OPFS persistence, export/import, multi-tab coordination, and a production offline PWA.",
"type": "module",
"main": "./pkg/absurder_sql.js",
"module": "./pkg/absurder_sql.js",
"types": "./pkg/absurder_sql.d.ts",
"exports": {
".": {
"types": "./pkg/absurder_sql.d.ts",
"import": "./pkg/absurder_sql.js"
},
"./package.json": "./package.json"
},
"files": [
"pkg/"
],
"keywords": [
"sqlite",
"indexeddb",
"wasm",
"webassembly",
"database",
"offline-first",
"rust",
"browser-database",
"sql",
"persistent-storage"
],
"author": "Nicholas G. Piesco",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/npiesco/absurder-sql.git"
},
"bugs": {
"url": "https://github.com/npiesco/absurder-sql/issues"
},
"homepage": "https://github.com/npiesco/absurder-sql#readme",
"scripts": {
"build": "wasm-pack build --target web --out-dir pkg && node scripts/sync_pwa_package.js",
"sync:pwa-package": "node scripts/sync_pwa_package.js",
"prepublishOnly": "npm run build",
"serve": "node scripts/static_http_server.js 8080",
"build:worker": "webpack --config webpack.worker.config.js",
"test:e2e": "playwright test",
"test:storage": "playwright test --config playwright.storage.config.js",
"test:e2e:headed": "playwright test --headed",
"test:vite:start": "cd examples/vite-app && npm run dev",
"test:pack": "npm pack && tar -tzf npiesco-absurder-sql-*.tgz"
},
"dependencies": {},
"devDependencies": {
"@jlongster/sql.js": "^1.5.0",
"absurd-sql": "^0.0.54",
"@playwright/test": "^1.40.0",
"webpack": "^5.50.0",
"webpack-cli": "^4.7.2"
},
"publishConfig": {
"access": "public"
}
}