-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (76 loc) · 2.19 KB
/
package.json
File metadata and controls
77 lines (76 loc) · 2.19 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
{
"name": "powerbi-visuals-tools",
"version": "7.1.0",
"description": "Command line tool for creating and publishing visuals for Power BI",
"main": "./bin/pbiviz.js",
"type": "module",
"scripts": {
"build": "tsc",
"pbiviz": "node ./bin/pbiviz.js",
"start": "npm run pbiviz start",
"test": "npm run build && npm run lint && npm run jasmine",
"jasmine": "node spec/jasmine-runner.js",
"jasmine-inspect": "node --inspect spec/jasmine-runner.js",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"debug-tests": "npm run lint && npm run jasmine-inspect"
},
"bin": {
"pbiviz": "./bin/pbiviz.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/PowerBI-visuals-tools.git"
},
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/PowerBI-visuals-tools/issues"
},
"homepage": "https://github.com/Microsoft/PowerBI-visuals-tools#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.3",
"@typescript-eslint/parser": "^8.50.0",
"async": "^3.2.6",
"chalk": "^5.4.1",
"commander": "^14.0.3",
"compare-versions": "^6.1.1",
"css-loader": "^7.1.4",
"eslint-plugin-powerbi-visuals": "1.1.1",
"fs-extra": "^11.3.4",
"inline-source-map": "^0.6.3",
"json-loader": "0.5.7",
"jszip": "^3.10.1",
"less": "^4.6.4",
"less-loader": "^12.3.2",
"lodash.clonedeep": "4.5.0",
"lodash.defaults": "4.2.0",
"lodash.isequal": "4.5.0",
"lodash.ismatch": "^4.4.0",
"mini-css-extract-plugin": "^2.10.2",
"powerbi-visuals-webpack-plugin": "^5.0.1",
"terser-webpack-plugin": "^5.4.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "^5.105.4",
"webpack-bundle-analyzer": "4.10.2",
"webpack-dev-server": "^5.2.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.58.0",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"jasmine": "^6.1.0",
"jasmine-spec-reporter": "7.0.0",
"semver": "7.7.4",
"tree-kill": "1.2.2",
"webpack-cli": "^6.0.1"
},
"optionalDependencies": {
"fsevents": "*"
},
"engines": {
"node": ">=20.19.0"
}
}