generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.33 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
{
"name": "@cloudscape-design/documenter",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/cloudscape-design/documenter.git"
},
"homepage": "https://cloudscape.design",
"main": "./index.js",
"exports": {
".": "./index.js"
},
"scripts": {
"lint": "eslint .",
"prebuild": "rimraf lib",
"build": "tsc -p tsconfig.json && tsc -p tsconfig.test.json",
"postbuild": "cp package.json README.md NOTICE LICENSE lib",
"test": "vitest run",
"prepare": "husky"
},
"devDependencies": {
"@types/micromatch": "^4.0.1",
"@types/node": "^20.0.0",
"@types/react": "^16.14.8",
"@types/react-dom": "^16.9.8",
"@vitest/coverage-v8": "^3.1.3",
"eslint": "^9.20.1",
"@eslint/compat": "^1.2.9",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-unicorn": "^60.0.0",
"husky": "^9.0.11",
"lint-staged": "^13.2.1",
"prettier": "^3.6.1",
"rimraf": "^5.0.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0",
"vitest": "^3.1.3"
},
"dependencies": {
"change-case": "^4.1.1",
"micromatch": "^4.0.8",
"pathe": "^1.1.2"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --fix"
]
}
}