-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
107 lines (107 loc) · 3.38 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "svelte-chartjs",
"version": "3.1.5",
"author": "Saurav Kanchan",
"homepage": "https://saurav.tech/mdbsvelte/?path=/story/charts--examples",
"license": "MIT",
"keywords": [
"svelte",
"chartjs"
],
"type": "module",
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SauravKanchan/svelte-chartjs.git"
},
"bugs": {
"url": "https://github.com/SauravKanchan/svelte-chartjs"
},
"scripts": {
"build": "svelte-package --input ./src && pnpm lint:package",
"commit": "cz",
"format": "prettier --write 'src/**/*.{js,ts,svelte}'",
"test:lint": "eslint src --ext .js,.svelte",
"test:size": "size-limit",
"test:unit": "vitest run --coverage",
"test": "pnpm test:lint && pnpm test:unit",
"lint:package": "publint --strict",
"start:storybook": "storybook dev -p 6006",
"build:storybook": "del ./storybook-static; NODE_ENV=production storybook build -o ./storybook-static",
"bumpVersion": "standard-version",
"createGithubRelease": "simple-github-release",
"release": "pnpm bumpVersion && git push origin master --tags && pnpm createGithubRelease",
"updateGitHooks": "simple-git-hooks"
},
"peerDependencies": {
"chart.js": "^3.5.0 || ^4.0.0",
"svelte": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@commitlint/cz-commitlint": "^18.0.0",
"@size-limit/preset-big-lib": "^8.0.0",
"@storybook/addon-actions": "^7.6.10",
"@storybook/addon-backgrounds": "^7.6.10",
"@storybook/addon-docs": "^7.6.10",
"@storybook/addon-essentials": "^7.6.10",
"@storybook/addon-measure": "^7.6.10",
"@storybook/addon-outline": "^7.6.10",
"@storybook/builder-vite": "^7.6.10",
"@storybook/client-api": "^7.6.10",
"@storybook/client-logger": "^7.6.10",
"@storybook/svelte": "^7.6.10",
"@storybook/svelte-vite": "^7.6.10",
"@sveltejs/package": "^2.2.4",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/svelte": "^4.0.5",
"@tsconfig/svelte": "^5.0.2",
"@types/node": "^20.11.10",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitest/coverage-v8": "^1.2.2",
"chart.js": "^4.1.2",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^5.0.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-svelte": "^2.35.1",
"eslint-plugin-vitest": "^0.3.20",
"jsdom": "^24.0.0",
"nano-staged": "^0.8.0",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.1.2",
"publint": "^0.2.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"simple-git-hooks": "^2.8.0",
"simple-github-release": "^1.0.0",
"size-limit": "^8.0.0",
"standard-version": "^9.5.0",
"storybook": "^7.6.10",
"svelte": "^4.2.9",
"svelte-eslint-parser": "^0.33.1",
"svelte-loader": "^3.1.9",
"svelte-preprocess": "^5.1.3",
"typescript": "^5.0.0",
"vite": "^5.0.12",
"vitest": "^1.2.1",
"vitest-canvas-mock": "^0.3.3"
}
}