-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.06 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
{
"author": "Beto Muniz <[email protected]>",
"name": "chrts",
"version": "1.0.0",
"description": "A simple chart web components library using SVG, CSS, and TypeScript.",
"directories": {
"doc": "docs",
"lib": "lib"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"release": "release-it"
},
"keywords": [
"web-component",
"bar-chart",
"pie-chart",
"gauge-chart",
"svg"
],
"license": "MIT",
"devDependencies": {
"@release-it/conventional-changelog": "^5.1.1",
"release-it": "^15.10.0",
"typescript": "^5.0.3"
},
"release-it": {
"git": {
"commitMessage": "Release v${version}"
},
"github": {
"release": true,
"web": true
},
"npm": {
"publish": true
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "docs/CHANGELOG.md",
"header": "# Changelog",
"preset": {
"name": "conventionalcommits"
}
}
}
}
}