-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
79 lines (79 loc) · 2.3 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
{
"name": "svelte-easy-crop",
"version": "3.0.1",
"description": "A Svelte component to crop images with easy interactions",
"homepage": "https://github.com/ValentinH/svelte-easy-crop",
"repository": {
"type": "git",
"url": "https://github.com/ValentinH/svelte-easy-crop"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Valentin Hervieu <[email protected]>",
"license": "MIT",
"keywords": [
"svelte",
"image crop",
"cropper"
],
"scripts": {
"dev": "vite dev --port 3000",
"build": "svelte-kit sync && yarn package",
"prepublishOnly": "yarn package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"package": "svelte-package",
"test": "vitest run && yarn e2e",
"unit": "vitest",
"e2e": "start-server-and-test dev http://localhost:3000 cy:run",
"e2e:ci": "start-server-and-test dev http://localhost:3000 cy:ci",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:ci": "cypress run --record"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/package": "^2.2.4",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"cypress": "^12.4.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-svelte": "^2.35.1",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.10.1",
"query-string": "^8.1.0",
"start-server-and-test": "^1.15.3",
"svelte-check": "^3.4.3",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vitest": "^1.0.0"
},
"peerDependencies": {
"svelte": "^4.0.0 || ^5.0.0"
},
"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": {
"svelte": "^4.2.8"
}
}