-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.83 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.83 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
{
"name": "@gooddata/sdk-backend-spi",
"version": "11.32.0-alpha.1",
"description": "GoodData Backend SPI abstraction interfaces",
"license": "MIT",
"author": "GoodData",
"repository": {
"type": "git",
"url": "https://github.com/gooddata/gooddata-ui-sdk.git",
"directory": "libs/sdk-backend-spi"
},
"files": [
"esm/**/*.js",
"esm/**/*.json",
"esm/**/*.d.ts",
"esm/**/*.map"
],
"type": "module",
"sideEffects": false,
"browser": "./esm/index.js",
"types": "./esm/index.d.ts",
"exports": "./esm/index.js",
"scripts": {
"_phase:build": "npm run build",
"_phase:test": "npm run test-once",
"_phase:validate": "npm run validate",
"api-extractor": "mkdir -p api && [ -z \"${CI}\" ] && (api-extractor run -l) || (api-extractor run)",
"build": "npm-run-all -p build-check build-ts && npm run api-extractor",
"build-check": "tsgo",
"build-ts": "tsgo -p tsconfig.build.json",
"clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage *.log tsconfig.tsbuildinfo",
"dep-cruiser": "depcruise --validate .dependency-cruiser.js --output-type err-long src/",
"format-check": "oxfmt --check .",
"format-write": "oxfmt .",
"lint": "oxlint . --type-aware --quiet && eslint .",
"lint-fix": "oxlint . --type-aware --quiet --fix && eslint . --fix",
"test": "vitest watch",
"test-once": "vitest run",
"validate": "npm run lint && npm run dep-cruiser && npm run format-check",
"validate-esm": "node --input-type=module --eval 'import \"@gooddata/sdk-backend-spi\"' "
},
"dependencies": {
"@gooddata/sdk-model": "workspace:*",
"lodash-es": "^4.17.23",
"ts-invariant": "0.10.3",
"tslib": "2.8.1"
},
"devDependencies": {
"@gooddata/eslint-config": "workspace:*",
"@gooddata/oxlint-config": "workspace:*",
"@microsoft/api-documenter": "^7.17.0",
"@microsoft/api-extractor": "^7.55.2",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "8.58.0",
"@typescript-eslint/parser": "8.58.0",
"@typescript/native-preview": "7.0.0-dev.20260202.1",
"dependency-cruiser": "17.3.10",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-headers": "1.3.3",
"eslint-plugin-import-esm": "1.2.1",
"eslint-plugin-import-x": "4.16.1",
"eslint-plugin-jsdoc": "62.1.0",
"eslint-plugin-no-barrel-files": "1.2.2",
"eslint-plugin-sonarjs": "3.0.6",
"npm-run-all": "^4.1.5",
"oxfmt": "0.45.0",
"oxlint": "^1.43.0",
"oxlint-tsgolint": "0.11.4",
"typescript": "5.9.3",
"vitest": "4.1.0"
}
}