-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "svelte-cartesian",
"version": "0.0.0-semantically-released",
"description": "A single component that helps render prop combinations (the \"Cartesian Product\") for visual regression testing.",
"type": "module",
"files": [
"index.js",
"lib"
],
"exports": [
"./index.js"
],
"scripts": {
"check": "svelte-check",
"test": "vitest",
"start-4": "cd e2e/svelte-4 && npm i && npm run dev"
},
"author": "Enrico Sacchetti <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/theetrain/svelte-cartesian.git"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@types/node": "^20.14.8",
"eslint": "^9.5.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-svelte": "^2.40.0",
"svelte": "^5.0.0-next.171",
"svelte-check": "^3.8.4",
"vite": "^5.3.1",
"vitest": "^1.6.0"
},
"peerDependencies": {
"svelte": "^4.2.18 || ^5.0.0-next.164"
},
"overrides": {
"eslint-config-standard": {
"eslint": "$eslint"
}
}
}