-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.71 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": "dwn-cozo-store",
"version": "0.0.9",
"type": "module",
"description": "dwn cozo store ",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Volland/dwn-cozo-store.git"
},
"author": "Volodymyr Pavlyshyn <pavlyshyn@gmail.com>",
"license": "Apache-2.0",
"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"
},
"files": [
"dist",
"src"
],
"react-native": "./dist/esm/src/main.js",
"scripts": {
"build:esm": "yarn run clean & tsc",
"build:cjs": "yarn run build:esm && node build/create-cjs-bundle.cjs && echo '{\"type\": \"commonjs\"}' > ./dist/cjs/package.json",
"build": "yarn run clean && yarn run build:esm && yarn run build:cjs",
"lint": "eslint . --ext .ts --max-warnings 0",
"test": "rimraf compiled && tsc -p tests/tsconfig.json && mocha",
"lint:fix": "eslint . --ext .ts --fix",
"clean": "rimraf dist compiled"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.2",
"@types/readable-stream": "^4.0.9",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"esbuild": "^0.19.8",
"eslint": "^8.55.0",
"mocha": "^10.2.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"ts-sinon": "^2.0.2",
"typescript": "^5.3.2"
},
"dependencies": {
"@ipld/dag-cbor": "^9.0.6",
"@tbd54566975/dwn-sdk-js": "0.2.9",
"multiformats": "^12.1.3",
"readable-stream": "^4.4.2",
"cozo-node": "^0.7.5"
}
}