-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.52 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.52 KB
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
{
"name": "@zkp-ld/jsonld-proofs",
"version": "0.14.0",
"description": "",
"author": "yamdan",
"license": "MIT",
"homepage": "https://github.com/zkp-ld/jsonld-proofs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zkp-ld/jsonld-proofs.git"
},
"bugs": {
"url": "https://github.com/zkp-ld/jsonld-proofs/issues"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"scripts": {
"build": "tsc --pretty",
"test": "vitest",
"test:run": "vitest run",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx}'",
"format": "prettier --write --loglevel=warn 'src/**/*.{js,jsx,ts,tsx,html,json,gql,graphql}'",
"fix": "npm run --silent format; npm run --silent lint:fix"
},
"dependencies": {
"@zkp-ld/rdf-proofs-wasm": "^0.15.0",
"json-diff": "git+https://github.com/Sequoia/json-diff.git#6085db5",
"jsonld": "^8.3.2",
"nanoid": "^3.3.7"
},
"devDependencies": {
"@types/json-diff": "^1.0.3",
"@types/jsonld": "./@types/jsonld",
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}