-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.84 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
{
"name": "@uxd-protocol/uxd-client",
"version": "9.0.0-rc2",
"description": "JavaScript Client for the UXD Solana Program",
"keywords": [
"solana",
"stablecoin"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/types/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/uxdprotocol/uxd-client.git"
},
"bugs": {
"url": "http://github.com/uxdprotocol/uxd-client.git/issues"
},
"author": "UXD Protocol",
"homepage": "https://uxd.fi/",
"license": "MIT",
"scripts": {
"build": "npm run build:esm; npm run build:cjs",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"clean": "rm -rf dist",
"format": "prettier --write 'src/**/*.ts'",
"format-check": "prettier --check 'src/**/*.ts'",
"lint": "eslint src",
"test": "jest --passWithNoTests",
"typecheck": "tsc --noEmit --pretty",
"prebuild": "npm run clean",
"prepublishOnly": "npm run validate && npm run build",
"validate": "npm run typecheck && npm run test && npm run lint && npm run format-check"
},
"dependencies": {
"@project-serum/anchor": "0.26.0",
"@solana/spl-token": "0.3.7",
"@solana/web3.js": "1.73.0",
"camelcase": "5.3.1"
},
"devDependencies": {
"@babel/preset-env": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@types/big.js": "^6.1.3",
"@types/bn.js": "^5.1.0",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.34",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.2.2",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
}
}