-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.34 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
{
"name": "svelte4-bc",
"version": "0.0.6",
"description": "Svelte 4 Backward Compatibility for Svelte 5",
"type": "module",
"main": "index.js",
"exports": {
".": {
"default": "./index.js",
"types": "./index.d.ts"
},
"./plugin": {
"default": "./plugin.js",
"types": "./plugin.d.ts"
}
},
"scripts": {
"check": "tsc --project ./jsconfig.json",
"lint": "eslint",
"format": "prettier --write .",
"build": "pnpm run format && pnpm run lint && pnpm run check",
"test": "echo \"Error: no test specified\" && exit 1"
},
"packageManager": "[email protected]",
"engines": {
"pnpm": "^9.0.0"
},
"keywords": [
"svelte",
"svelte4",
"svelte5",
"Backward Compatibility"
],
"author": "adiGuba",
"license": "MIT",
"dependencies": {
"esm-env": "^1.0.0",
"svelte4-bc": "file:"
},
"peerDependencies": {
"svelte": "^5.0.0-next.262"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/node": "^22.7.5",
"eslint": "^9.12.0",
"globals": "^15.10.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adiguba/svelte4-bc.git"
},
"bugs": {
"url": "https://github.com/adiguba/svelte4-bc/issues"
},
"homepage": "https://github.com/adiguba/svelte4-bc#readme"
}