-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 853 Bytes
/
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
{
"name": "esbuild-plugin-svelte",
"version": "0.1.1",
"description": "An esbuild plugin to load svelte files.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"test": "npm run build && node -r esm test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yagebu/esbuild-plugin-svelte.git"
},
"keywords": [
"esbuild",
"svelte",
"plugin"
],
"author": "Jakob Schnitzer",
"license": "MIT",
"files": [
"index.d.ts"
],
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/node": "^14.14.25",
"esbuild": "^0.8.42",
"esm": "^3.2.25",
"svelte": "^3.32.1",
"svelte-preprocess": "^4.6.6",
"typescript": "^4.1.3",
"uvu": "^0.5.1"
},
"peerDependencies": {
"esbuild": "^0.8",
"svelte": "^3.20"
}
}