-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 2.95 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@xoxno/sdk-js",
"version": "0.1.300",
"description": "The SDK to interact with the XOXNO Protocol!",
"type": "module",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
},
"./interactor": {
"import": "./dist/interactor.esm.js",
"require": "./dist/interactor.cjs.js",
"types": "./dist/interactor.d.ts"
}
},
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"files": [
"dist/**/*"
],
"sideEffects": false,
"scripts": {
"test": "jest",
"build:types": "tsc --emitDeclarationOnly",
"build:esm": "webpack --config webpack-esm.config.mjs",
"build:cjs": "webpack --config webpack-cjs.config.mjs",
"build": "npm run build:types && npm run build:esm && npm run build:cjs",
"lint": "eslint 'src/**/*.{ts,tsx}' --fix",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"commit": "git-cz",
"release": "semantic-release",
"docs": "typedoc --out docs src/**/*.ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/XOXNO/sdk-js.git"
},
"husky": {
"hooks": {
"commit-msg": "npx --no-install commitlint --edit \"$1\"",
"pre-commit": "npm run format && npm run lint && npm run docs",
"pre-push": "npm test"
}
},
"keywords": [
"XOXNO",
"MultiversX",
"NFTs",
"Blockchain",
"Crypto"
],
"author": "Mihai Eremia",
"license": "ISC",
"bugs": {
"url": "https://github.com/XOXNO/sdk-js/issues"
},
"homepage": "https://github.com/XOXNO/sdk-js#readme",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@swc/cli": "^0.5.2",
"@swc/core": "^1.10.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"semantic-release": "^24.2.0",
"swc-loader": "^0.2.6",
"terser-webpack-plugin": "^5.3.11",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typedoc": "^0.27.6",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"@multiversx/sdk-core": "^13.16.0",
"@multiversx/sdk-network-providers": "^2.9.3",
"axios": "^1.7.9",
"protobufjs": "^7.4.0",
"webpack-bundle-analyzer": "^4.10.2"
}
}