-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
{
"name": "@kaxline/typeorm-sqlite-wasm",
"version": "0.0.1",
"description": "TypeORM with SQLite compiled to WebAssembly",
"main": "dist/bundle.js",
"type": "module",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"watch": "rollpkg watch",
"prepublishOnly": "npm run build",
"test": "yarn node --experimental-vm-modules $(yarn bin jest)"
},
"dependencies": {
"@sqlite.org/sqlite-wasm": "^3.45.3-build1",
"path-browserify": "^1.0.1",
"reflect-metadata": "^0.2.2"
},
"peerDependencies": {
"typeorm": "^0.3.20"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@jest/types": "^29.6.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-wasm": "^6.2.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"@types/path-browserify": "^1.0.2",
"@typescript-eslint/eslint-plugin": "~7.8.0",
"@typescript-eslint/parser": "~7.8.0",
"eslint": "^9.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollpkg": "^0.5.7",
"rollup": "^4.17.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.0",
"ts-jest": "^29.1.2",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.2",
"typeorm": "^0.3.20",
"typescript": "^5.4.5"
}
}