forked from evoluhq/evolu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.34 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.34 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
{
"name": "@evolu/svelte",
"version": "2.4.0",
"description": "Evolu for Svelte",
"keywords": [
"evolu",
"svelte"
],
"homepage": "https://evolu.dev",
"bugs": {
"url": "https://github.com/evoluhq/evolu/issues"
},
"repository": "evoluhq/evolu",
"license": "MIT",
"sideEffects": [],
"type": "module",
"exports": {
".": {
"types": "./dist/index.svelte.d.ts",
"svelte": "./dist/index.svelte.js"
}
},
"svelte": "./dist/index.svelte.js",
"types": "./dist/index.svelte.d.ts",
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"scripts": {
"build": "rimraf dist && tsc && pnpm run package",
"check": "svelte-check --tsconfig ./tsconfig.json",
"clean": "rimraf .turbo .svelte-kit node_modules dist",
"dev": "tsc --watch",
"package": "svelte-package",
"prepublishOnly": "pnpm run package",
"preview": "vite preview"
},
"devDependencies": {
"@evolu/common": "workspace:*",
"@evolu/tsconfig": "workspace:*",
"@evolu/web": "workspace:*",
"@sveltejs/package": "^2.5.0",
"@tsconfig/svelte": "^5.0.5",
"svelte": "^5.51.5",
"svelte-check": "^4.3.1",
"typescript": "^5.9.2"
},
"peerDependencies": {
"@evolu/common": "^7.4.1",
"@evolu/web": "^2.4.0",
"svelte": ">=5"
},
"publishConfig": {
"access": "public"
}
}