-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 KB
/
package.json
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
{
"name": "@cloudscape-design/global-styles",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/cloudscape-design/global-styles.git"
},
"homepage": "https://cloudscape.design",
"license": "Apache-2.0",
"type": "module",
"main": "./index.js",
"exports": {
".": "./index.js",
"./dark-mode-utils.css": "./dark-mode-utils.css",
"./index.css": "./index.css"
},
"files": [
"*.js",
"*.d.ts",
"*.css",
"THIRD-PARTY-LICENSES.txt"
],
"scripts": {
"prepare": "husky",
"prebuild": "rm -rf lib && mkdir lib",
"build": "node postcss.js && tsc",
"postbuild": "cp dark-mode-utils.css package.json THIRD-PARTY-LICENSES.txt LICENSE README.md lib",
"lint": "eslint .",
"test": "vitest --run"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vitest/coverage-istanbul": "^2.1.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-header": "3.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-unicorn": "^34.0.1",
"husky": "^9.0.11",
"lint-staged": "^13.2.1",
"normalize.css": "^8.0.1",
"postcss": "^8.4.31",
"postcss-import": "^14.0.2",
"postcss-url": "^10.1.3",
"prettier": "^2.5.1",
"typescript": "^4.5.5",
"vitest": "^2.1.6"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix"
]
}
}