-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 906 Bytes
/
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
{
"name": "@stellar-expert/asset-descriptor",
"version": "1.4.0",
"description": "Asset wrapper for Stellar assets",
"main": "lib/asset-descriptor.js",
"module": "src/index.js",
"sideEffects": false,
"exports": {
"import": "./src/index.js",
"require": "./lib/asset-descriptor.js"
},
"scripts": {
"build": "webpack --mode=production --config webpack.config.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stellar-expert/asset-descriptor.git"
},
"author": "orbitlens<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stellar-expert/asset-descriptor/issues"
},
"peerDependencies": {
"@stellar/stellar-base": "*"
},
"devDependencies": {
"@babel/core": "^7.24.8",
"@babel/preset-env": "^7.24.8",
"babel-loader": "^9.1.3",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
}
}