-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.7 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
{
"name": "@verida/polygonid-storage",
"version": "0.0.2",
"description": "SDK to provide Verida network storage to Polygon ID",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"source": "./src/index.ts",
"esm:esbuild": "dist/esm_esbuild/index.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && npm run build:esm && npm run build:umd && npm run build:esm:esbuild && npm run build:tsc",
"build:esm:esbuild": "node ./scripts/esm.config.js",
"build:umd": "node ./scripts/umd.config.js",
"build:tsc": "tsc --module commonjs",
"build:esm": "tsc -p config/tsconfig.esm.json",
"clean": "rimraf ./dist",
"doc:extract": "ts-node ./scripts/doc-extract.ts",
"doc:documenter": "ts-node ./scripts/doc-documenter.ts",
"doc:build": "npm run doc:extract && npm run doc:documenter",
"doc:watch:website": "ts-node ./scripts/doc-watch.ts",
"tsc:declaration:watch": "tsc --watch --module commonjs --emitDeclarationOnly",
"test": "mocha --require ts-node/register tests/**/*.ts -t 30000",
"test:watch": "mocha -p --require ts-node/register tests/**/*.ts -t 60000 --watch",
"lint": "eslint --fix --ext .js,.ts src/**",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"deps:check": "madge --circular --extensions ts ./"
},
"repository": {
"type": "git",
"url": "https://github.com/verida/polygonid-storage.git"
},
"author": "",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/verida/polygonid-storage/issues"
},
"homepage": "https://github.com/verida/polygonid-storage#readme",
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@verida/client-ts": "^2.3.4",
"esbuild": "^0.15.15",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"madge": "^6.0.0",
"mocha": "10.2.0",
"prettier": "^2.7.1",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@0xpolygonid/js-sdk": "^1.0.0-beta.3",
"@iden3/js-merkletree": "^1.0.0-beta.2",
"@types/pouchdb-core": "^7.0.11",
"@verida/types": "^2.3.1",
"uuid": "^9.0.0"
},
"resolutions": {
"fastfile": "0.0.19"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}