-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.78 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
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
{
"name": "@robosystems/report-components",
"version": "0.7.0",
"description": "Source-agnostic React components for rendering XBRL-grade financial statements",
"license": "MIT",
"author": "RFS LLC",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./adapters": {
"types": "./dist/adapters/index.d.ts",
"import": "./dist/adapters/index.js"
}
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:all": "npm run format:check && npm run lint && npm run typecheck && npm run test && npm run build",
"prepare": "git config core.hooksPath .githooks || true",
"prepublishOnly": "npm run build",
"feature:create": "./bin/create-feature.sh",
"release:create": "./bin/create-release.sh"
},
"keywords": [
"robosystems",
"financial",
"xbrl",
"react",
"report",
"holon",
"rdf"
],
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"jsonld": "^9.0.0",
"marked": "^18.0.6",
"n3": "^2.6.4"
},
"//overrides": "esbuild is forced to ^0.28.1 to clear GHSA-g7r4-m6w7-qqqr. It reaches us only through tsup, which caps at ^0.27.0 even at its latest release (8.5.1), so npm cannot resolve the fix on its own. REMOVE once tsup depends on esbuild >= 0.28.1.",
"overrides": {
"esbuild": "^0.28.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/react": "^16.3.0",
"@types/jsonld": "^1.5.15",
"@types/n3": "^1.26.0",
"@types/node": "^22.0.0",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.9",
"eslint": "^10.9.1",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.0.0",
"happy-dom": "^20.0.8",
"prettier": "^3.0.0",
"prettier-plugin-organize-imports": "^4.0.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tsup": "^8.5.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.54.0",
"vitest": "^4.1.4"
},
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/RoboFinSystems/robosystems-report-components.git"
},
"bugs": {
"url": "https://github.com/RoboFinSystems/robosystems-report-components/issues"
},
"homepage": "https://github.com/RoboFinSystems/robosystems-report-components#readme"
}