-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 871 Bytes
/
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
{
"name": "@scmmishra/vue-axis",
"type": "module",
"version": "0.0.1",
"description": "SVG charts using Vanilla VueJS",
"author": "Shivam Mishra <scm.mymail@gmail.com> (https://github.com/scmmishra/)",
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"tsconfig.json"
],
"scripts": {
"prepack": "unbuild",
"release": "changelogen --release && npm publish --access public && git push --follow-tags",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"changelogen": "^0.5.7",
"eslint": "^9.18.0",
"eslint-plugin-format": "^1.0.1",
"typescript": "^5.7.3",
"unbuild": "^3.3.1"
}
}