-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.21 KB
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
{
"name": "svelte-plotly.js",
"version": "2.0.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": "^7.2.0",
"@types/lodash-es": "^4.17.12",
"@types/plotly.js": "^3.0.10",
"lodash-es": "^4.18.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@sveltejs/adapter-auto": "^7.0.1",
"@sveltejs/kit": "^2.56.1",
"@sveltejs/package": "^2.5.7",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@types/eslint": "^9.6.1",
"eslint": "^10.2.0",
"eslint-plugin-svelte": "^3.17.0",
"globals": "^17.4.0",
"plotly.js-dist": "^3.5.0",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"publint": "^0.3.18",
"sass": "^1.99.0",
"svelte-check": "^4.4.6",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.7"
},
"peerDependencies": {
"plotly.js-dist": "^3.0.0",
"svelte": "^5.0.0"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher"
]
}
}