-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.53 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": "inclusive-elements",
"version": "0.5.0-beta.2",
"description": "Accessible, lightweight, unstyled implementations of common UI controls.",
"module": "dist/inclusive-elements.js",
"type": "module",
"types": "dist/types/index.d.ts",
"license": "MIT",
"repository": "tobyzerner/inclusive-elements",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build && tsc --emitDeclarationOnly",
"preview": "vite preview",
"release": "release-it"
},
"dependencies": {
"@floating-ui/dom": "^1.5.3",
"focus-trap": "^7.5.3",
"hello-goodbye": "^0.2.1",
"tabbable": "^6.2.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^5.1.1",
"prettier": "^2.8.8",
"release-it": "^15.11.0",
"typescript": "^5.2.2",
"vite": "^4.4.11"
},
"release-it": {
"git": {
"commitMessage": "release: v${version}",
"tagName": "v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "conventionalcommits",
"infile": "CHANGELOG.md",
"header": "# Changelog"
}
},
"hooks": {
"after:bump": "npm run build"
}
},
"prettier": {
"singleQuote": true
}
}