-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 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
{
"name": "jeep-sqlite",
"version": "2.8.0",
"description": "Browser SQLite Stencil Component",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "./dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/jeep-sqlite/jeep-sqlite.esm.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"copy:sql:wasm": "copyfiles -u 3 node_modules/sql.js/dist/sql-wasm.wasm www/assets",
"build": "npm run copy:sql:wasm && stencil build --docs",
"start": "npm run copy:sql:wasm && stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate"
},
"dependencies": {
"@stencil/core": "^4.20.0",
"browser-fs-access": "^0.35.0",
"jszip": "^3.10.1",
"localforage": "^1.10.0",
"sql.js": "^1.11.0"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "^20.12.7",
"@types/sql.js": "^1.4.9",
"copyfiles": "^2.4.1",
"jest": "^27.5.1",
"jest-cli": "^27.5.1",
"puppeteer": "^23.1.0",
"rollup-plugin-node-polyfills": "^0.2.1"
},
"keywords": [
"SQLite",
"SQLite in Browser",
"stencil",
"web component"
],
"author": "Jean Pierre Quéau",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jepiqueau/jeep-sqlite.git"
},
"bugs": {
"url": "https://github.com/jepiqueau/jeep-sqlite.git/issues"
}
}