-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.23 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
{
"name": "chartjs-adapter-intl",
"version": "0.1.0",
"description": "Chart.js adapter to use native ECMAScript Internationalization API for date formatting",
"repository": {
"type": "git",
"url": "git+https://github.com/dankerow/chartjs-adapter-intl.git"
},
"license": "MIT",
"sideEffects": false,
"type": "module",
"jsdelivr": "dist/chartjs-adapter-intl.umd.min.js",
"unpkg": "dist/chartjs-adapter-intl.umd.min.js",
"main": "dist/chartjs-adapter-intl.esm.js",
"exports": {
".": "./dist/chartjs-adapter-intl.esm.js"
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "vitest",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepack": "pnpm build",
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && vitest run --coverage"
},
"peerDependencies": {
"chart.js": ">=3.0.0"
},
"devDependencies": {
"@types/node": "^22.5.5",
"@vitest/coverage-v8": "^2.1.1",
"changelogen": "^0.5.5",
"chart.js": "^4.4.4",
"eslint": "^9.10.0",
"eslint-config-unjs": "^0.3.2",
"typescript": "^5.5.3",
"unbuild": "^2.0.0",
"vitest": "^2.1.1"
},
"packageManager": "[email protected]"
}