-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.45 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.45 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": "@cloudscape-design/theming-mono",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/cloudscape-design/theming-core.git"
},
"homepage": "https://cloudscape.design",
"scripts": {
"lint": "eslint .",
"test:build": "vitest run -c vitest.config.build.mjs",
"test:browser": "vitest run -c vitest.config.browser.mjs",
"test:integ": "vitest run -c vitest.config.integ.mjs",
"pretest": "tsc -p tsconfig.test.json",
"test": "npm run test:build && npm run test:browser && npm run test:integ",
"clean": "rm -rf lib coverage",
"build": "tsc -b && node scripts/generate-package.mjs",
"preinstall": "prepare-package-lock",
"prepublishOnly": "npm run clean && npm run build",
"prepare": "husky install"
},
"files": [],
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@cloudscape-design/build-tools": "github:cloudscape-design/build-tools#main",
"@cloudscape-design/browser-test-tools": "^3.0.2",
"@cloudscape-design/component-toolkit": "^1.0.0-beta.53",
"@eslint/compat": "^1.2.9",
"@material/material-color-utilities": "^0.3.0",
"@tony.ganchev/eslint-plugin-header": "^3.1.1",
"@tsconfig/node16": "^1.0.3",
"@types/loader-utils": "^2.0.3",
"@types/lodash": "^4.14.183",
"@types/postcss-inline-svg": "^5.0.0",
"@types/rimraf": "^3.0.2",
"@types/string-hash": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitest/coverage-v8": "^3.0.7",
"autoprefixer": "^10.4.8",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-unicorn": "^41.0.1",
"eslint": "^9.39.2",
"glob": "^10.5.0",
"globals": "^16.1.0",
"husky": "^7.0.4",
"jsdom": "^26.0.0",
"jsonschema": "^1.4.1",
"lint-staged": "^12.5.0",
"loader-utils": "^3.2.1",
"lodash": "^4.17.21",
"merge": "^2.1.1",
"postcss-discard-empty": "^6.0.0",
"postcss-inline-svg": "^6.0.0",
"postcss-modules": "^6.0.0",
"postcss": "^8.4.31",
"prettier": "^3.6.1",
"sass": "^1.77.8",
"string-hash": "^1.1.3",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"typescript-eslint": "^8.44.0",
"vitest": "^3.0.7"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"package-lock.json": [
"prepare-package-lock"
]
},
"devDependencies": {
"@types/node": "^24.10.0"
}
}