-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.38 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.38 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
{
"name": "@igniteui-theming/root",
"private": true,
"description": "A Sass library that helps with the implementation of design systems.",
"author": "Infragistics",
"bugs": {
"url": "https://github.com/IgniteUI/igniteui-theming/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IgniteUI/igniteui-theming.git"
},
"license": "MIT",
"homepage": "https://github.com/IgniteUI/igniteui-theming#readme",
"type": "module",
"workspaces": [
"packages/theming",
"packages/mcp"
],
"scripts": {
"build": "npm run build -w packages/theming",
"clean": "npm run clean --workspaces --if-present",
"test": "vitest run",
"lint": "npm run lint:biome && npm run lint --workspaces --if-present",
"lint:biome": "biome check",
"format": "biome check --fix && npm run format --workspaces --if-present",
"prepare": "husky install && npm run prepare --workspaces --if-present",
"coverage": "vitest run --coverage",
"mcp:inspector": "npx @modelcontextprotocol/inspector ./packages/theming/dist/mcp/index.js"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@types/node": "^25.4.0",
"@vitest/coverage-v8": "^4.1.1",
"husky": "^8.0.3",
"prettier": "^3.2.5",
"shx": "^0.4.0",
"tsx": "^4.0.0",
"typescript": "^6.0.0",
"vite": "^8.0.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.1"
}
}