-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"name": "@ngyewch/chartjs-v4-webcomponent",
"version": "0.4.0",
"description": "Chart.js v4 web component",
"keywords": [
"chart.js",
"web-component"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ngyewch/chartjs-v4-webcomponent.git"
},
"type": "module",
"exports": {
".": {
"import": "./dist/chartjs-v4-webcomponent.js",
"types": "./dist/chartjs-v4-webcomponents.d.ts"
}
},
"module": "./dist/chartjs-v4-webcomponent.js",
"types": "./dist/chartjs-v4-webcomponents.d.ts",
"scripts": {
"build": "tsc --noEmit && vite build",
"postbuild": "validate-package-exports --check",
"prepublishOnly": "validate-package-exports --check"
},
"devDependencies": {
"chart.js": "4.4.6",
"chartjs-adapter-date-fns": "3.0.0",
"date-fns": "4.1.0",
"gh-pages": "6.2.0",
"lit": "3.2.1",
"typescript": "5.6.3",
"validate-package-exports": "0.7.0",
"vite": "5.4.11",
"vite-plugin-dts": "4.3.0"
},
"dependencies": {
},
"files": [
"dist/*"
],
"publishConfig": {
"access": "public"
}
}