-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.53 KB
/
package.json
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
{
"name": "neverchange",
"description": "NeverChange is a database solution for web applications using SQLite WASM and OPFS.",
"version": "0.0.8",
"type": "module",
"main": "./dist/neverchange.umd.js",
"module": "./dist/neverchange.es.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/neverchange.es.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/neverchange.umd.js"
}
}
},
"scripts": {
"build": "vite build && tsc",
"e2e": "npm run build && playwright test",
"dev:e2e": "npm run build && vite --mode e2e",
"fmt": "biome format --write src e2e ",
"prepublishOnly": "npm run build"
},
"keywords": [
"sqlite",
"sqlite-wasm",
"wasm",
"opfs",
"frontend",
"database"
],
"author": "shinshin86 <shinshin86npm@gmail.com> (https://github.com/shinshin86)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/shinshin86/neverchange.git"
},
"bugs": {
"url": "https://github.com/shinshin86/neverchange/issues"
},
"homepage": "https://github.com/shinshin86/neverchange#readme",
"dependencies": {
"@sqlite.org/sqlite-wasm": "^3.46.1-build2"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@playwright/test": "^1.46.1",
"@types/node": "^22.5.2",
"playwright": "^1.46.1",
"typescript": "^5.5.3",
"vite": "^5.4.2"
}
}