-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
76 lines (76 loc) · 2.27 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
{
"name": "@spruceid/ssx",
"version": "2.2.0",
"description": "An identity solution that enables SSI to JS/TS apps.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "ssh://[email protected]:spruceid/ssx.git"
},
"type": "commonjs",
"author": "Spruce Systems, Inc.",
"license": "Apache-2.0 OR MIT",
"scripts": {
"build": "webpack --mode production",
"watch": "webpack --watch",
"doc": "yarn doc:extractor && yarn doc:documenter",
"doc:old": "typedoc",
"doc:extractor": "api-extractor run",
"doc:documenter": "api-documenter generate -i temp -o ../../documentation/reference/ssx-sdk",
"doc:reference": "node scripts/build-docs.js",
"lint": "eslint --ext .ts src/ --fix",
"clean": "rimraf dist && rimraf temp",
"test": "jest"
},
"dependencies": {
"@metamask/detect-provider": "^1.2.0",
"@spruceid/ssx-core": "2.1.0",
"@spruceid/ssx-sdk-wasm": "0.3.0",
"assert": "^2.1.0",
"axios": "^1.6.7",
"browser": "^0.2.6",
"buffer": "^6.0.3",
"cross-env": "5.2.1",
"ethers": "^5.7.2",
"events": "^3.3.0",
"https-browserify": "^1.0.0",
"lodash.merge": "^4.6.2",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"siwe": "^2.1.4",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.3"
},
"devDependencies": {
"@babel/preset-env": "^7.24.0",
"@microsoft/api-documenter": "^7.23.37",
"@microsoft/api-extractor": "^7.42.3",
"@types/jest": "^27.5.2",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^18.19.22",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@webpack-cli/generators": "^3.0.7",
"babel-jest": "^28.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"declaration-bundler-webpack-plugin": "^1.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"gh-pages": "^4.0.0",
"typedoc": "^0.23.28",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^4.9.5",
"util": "^0.12.5",
"webpack": "^5.90.3",
"webpack-cli": "^4.10.0"
},
"files": [
"dist"
]
}