-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.16 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
{
"name": "@albedo-link/intent",
"version": "0.13.0",
"description": "A lightweight browser wrapper for Albedo API that provides a promise-based interface for all supported intents.",
"author": "StellarExpertTeam<info@stellar.expert>",
"license": "MIT",
"homepage": "https://github.com/stellar-expert/albedo",
"bugs": {
"url": "https://github.com/stellar-expert/albedo/issues",
"email": "info@stellar.expert"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stellar-expert/albedo.git"
},
"scripts": {
"build": "webpack --mode=production --config ./webpack.config.cjs",
"postbuild": "node build/generate-docs.js",
"test": "jest"
},
"type": "module",
"main": "lib/albedo.intent.js",
"module": "src/index.js",
"types": "src/index.d.ts",
"keywords": [
"albedo",
"stellar",
"SSO",
"signer",
"intent",
"multi-sig"
],
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"jest": "^29.7.0",
"jest-expect-message": "^1.1.3",
"webpack": "^5.99.9",
"webpack-cli": "^5.1.4"
}
}