-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.98 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.98 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
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
{
"name": "@xoxno/types",
"version": "1.0.411",
"description": "Shared types and utilities for XOXNO API.",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./enums": {
"import": "./dist/enums/index.js",
"require": "./dist/enums/index.js",
"types": "./dist/enums/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.js",
"files": [
"dist/**/*"
],
"sideEffects": false,
"scripts": {
"build": "node generate-barrel.mjs && eslint 'src/index.ts' --fix && tsc && node strip-types.js",
"build:watch": "tsc --watch",
"prepublishOnly": "npm run build",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"test:lending-chain": "npm run build && node test/lending-chain.test.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XOXNO/types.git"
},
"keywords": [
"types",
"utils"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/XOXNO/types/issues"
},
"homepage": "https://github.com/XOXNO/types#readme",
"devDependencies": {
"@azure/cosmos": "^4.5.0",
"@multiversx/sdk-nestjs-common": "^6.0.0",
"@nestjs/common": "^11.1.5",
"@nestjs/core": "^11.1.6",
"@nestjs/swagger": "^11.2.0",
"@types/node": "^24.0.15",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"glob": "^11.0.3",
"prettier": "^3.6.2",
"reflect-metadata": "^0.2.2",
"rollup": "^4.45.1",
"rollup-plugin-dts": "^6.2.1",
"rxjs": "^7.8.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"uuid": "^11.1.0"
}
}