-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.67 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.67 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
{
"name": "@haroonwaves/sqlite-wasm-easy",
"version": "0.2.6",
"description": "A simple, zero-config wrapper around @sqlite.org/sqlite-wasm",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "vite build",
"dev": "vite",
"dev:examples": "npm run build && vite",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"spellcheck": "cspell \"**/*\"",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run spellcheck && npm run typecheck && npm run format:check",
"prepublishOnly": "npm run build",
"publish:package": "pnpm publish --access public --no-git-checks"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"sqlite",
"wasm",
"database",
"sql",
"opfs",
"browser",
"indexeddb",
"web-worker",
"sqlite-wasm"
],
"author": "haroonwaves",
"license": "MIT",
"dependencies": {
"@sqlite.org/sqlite-wasm": "^3.51.2-build5"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.0.10",
"cspell": "^9.6.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.1.0",
"prettier": "^3.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.53.1",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.4"
},
"repository": {
"type": "git",
"url": "https://github.com/haroonwaves/sqlite-wasm-easy"
},
"homepage": "https://github.com/haroonwaves/sqlite-wasm-easy"
}