-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.5 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
57
{
"name": "react-headings",
"version": "1.0.0-semantic-release",
"description": "HTML headings with auto-incrementing levels for WCAG compliance.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Alex Nault",
"keywords": [
"react",
"heading",
"auto",
"level",
"accessibility",
"a11y",
"wcag",
"h1",
"header",
"title"
],
"license": "MIT",
"repository": "https://github.com/alexnault/react-headings",
"homepage": "https://github.com/alexnault/react-headings#readme",
"scripts": {
"build": "rm -rf ./dist && tsc",
"format": "prettier ./ --write",
"lint": "eslint ./ --max-warnings=0",
"size": "size-limit",
"test": "vitest run --coverage"
},
"files": [
"dist"
],
"sideEffects": false,
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^7.0.8",
"@testing-library/react": "^13.0.1",
"@types/react": "^18.0.3",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vitest/coverage-c8": "^0.30.1",
"conventional-changelog-conventionalcommits": "^4.6.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"jsdom": "^21.1.1",
"prettier": "^2.7.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"semantic-release": "^21.0.1",
"size-limit": "^7.0.8",
"typescript": "^4.4.3",
"vitest": "^0.30.1"
}
}