-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 936 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
40
41
42
{
"version": "0.0.13",
"name": "svelte-inline-bundler",
"author": {
"email": "zahirovic.safet@gmail.com",
"name": "Safet Zahirovic",
"url": "https://github.com/SafetZahirovic/svelte-inline-bundler.git"
},
"repository": "https://github.com/SafetZahirovic/svelte-inline-bundler",
"license": "MIT",
"scripts": {
"build": "tsc"
},
"files": [
"dist/*",
"src/*",
"types/*",
"package.json",
"tsconfig.json",
"CHANGELOG.md",
"README.md"
],
"type": "module",
"exports": {
".": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"dependencies": {
"esbuild": "0.17.15",
"esbuild-plugin-replace": "1.3.0",
"esbuild-svelte": "0.7.3",
"node-cache": "5.1.2",
"svelte": "3.58.0",
"svelte-preprocess": "5.0.3"
},
"devDependencies": {
"@types/node": "18.15.11",
"nodemon": "2.0.22",
"ts-node": "10.9.1",
"typescript": "5.0.3"
}
}