-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
87 lines (87 loc) · 2.54 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@tbd54566975/dwn-sql-store",
"version": "0.6.9",
"description": "SQL backed implementations of DWN MessageStore, DataStore, and EventLog",
"type": "module",
"license": "Apache-2.0",
"homepage": "https://github.com/TBD54566975/dwn-sql-store#readme",
"bugs": "https://github.com/TBD54566975/dwn-sql-store/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/TBD54566975/dwn-sql-store.git"
},
"main": "./dist/cjs/main.js",
"module": "./dist/esm/src/main.js",
"types": "./dist/types/src/main.d.ts",
"exports": {
"import": "./dist/esm/src/main.js",
"require": "./dist/cjs/main.js",
"types": "./dist/types/src/main.d.ts"
},
"react-native": "./dist/esm/src/main.js",
"dependencies": {
"@ipld/dag-cbor": "9.0.5",
"@tbd54566975/dwn-sdk-js": "0.5.2",
"kysely": "0.26.3",
"multiformats": "12.0.1",
"readable-stream": "4.4.2"
},
"devDependencies": {
"@types/better-sqlite3": "7.6.4",
"@types/chai": "4.3.4",
"@types/chai-as-promised": "7.1.5",
"@types/express": "4.17.17",
"@types/mocha": "10.0.1",
"@types/node": "20.3.1",
"@types/pg": "8.10.2",
"@types/pg-cursor": "2.7.0",
"@types/readable-stream": "4.0.6",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.59.11",
"@typescript-eslint/parser": "5.59.11",
"better-sqlite3": "8.4.0",
"c8": "8.0.0",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"esbuild": "^0.19.3",
"eslint": "8.42.0",
"mocha": "10.2.0",
"mysql2": "3.9.8",
"pg": "8.11.1",
"pg-cursor": "2.10.1",
"rimraf": "5.0.1",
"sinon": "^18.0.1",
"typescript": "5.0.4"
},
"scripts": {
"build:esm": "npm run clean & tsc",
"build:cjs": "npm run build:esm && node build/create-cjs-bundle.cjs && echo '{\"type\": \"commonjs\"}' > ./dist/cjs/package.json",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"clean": "rimraf dist compiled",
"lint": "eslint . --ext .ts --max-warnings 0",
"lint:fix": "eslint . --ext .ts --fix",
"test": "rimraf compiled && tsc -p tests/tsconfig.json && mocha",
"test-coverage": "rimraf compiled && tsc -p tests/tsconfig.json && c8 mocha"
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=18"
},
"contributors": [
{
"name": "Adam Mika",
"url": "https://github.com/amika-sq"
},
{
"name": "Moe Jangda",
"url": "https://github.com/mistermoe"
},
{
"name": "Liran Cohen",
"url": "https://github.com/lirancohen"
}
]
}