-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.11 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
{
"name": "svelte-plotly.js",
"version": "1.2.0",
"author": {
"name": "Michal Grňo (m93a)",
"url": "https://github.com/m93a/"
},
"description": "Unoficial Plotly package for Svelte and SvelteKit",
"homepage": "https://github.com/m93a/svelte-plotly.js",
"repository": "https://github.com/m93a/svelte-plotly.js",
"license": "MIT",
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run package",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint && npm run lint",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check src/ && eslint .",
"format": "prettier --write ."
},
"type": "module",
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"dependencies": {
"@fortawesome/fontawesome-common-types": "^6.6.0",
"@types/lodash-es": "^4.17.12",
"@types/plotly.js": "^2.33.3",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@sveltejs/adapter-auto": "^3.2.2",
"@sveltejs/kit": "^2.5.18",
"@sveltejs/package": "^2.3.2",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@types/eslint": "^9.6.0",
"eslint": "^9.8.0",
"eslint-plugin-svelte": "^2.43.0",
"globals": "^15.8.0",
"plotly.js-dist": "^2.34.0",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"publint": "^0.2.9",
"sass": "^1.77.8",
"svelte-check": "^3.8.5",
"typescript": "^5.5.4",
"typescript-eslint": "^7.18.0",
"vite": "^5.3.5"
},
"peerDependencies": {
"plotly.js-dist": "^2.34.0",
"svelte": "^4.2.0"
},
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}