-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1021 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
43
{
"name": "my-app",
"description": "This an example app ",
"image": "./src/assets/svelte.png",
"homepage": "https://github.com/fouita/svelte-template",
"private": true,
"version": "0.0.1",
"files": [
"dist"
],
"main": "./dist/my-lib.umd.js",
"module": "./dist/my-lib.es.js",
"license": "MIT",
"exports": {
".": {
"import": "./dist/my-lib.es.js",
"require": "./dist/my-lib.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"deploy": "fouita publish"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.30",
"autoprefixer": "^10.4.7",
"postcss": "^8.4.14",
"svelte": "^3.44.0",
"svelte-preprocess": "^4.10.7",
"tailwindcss": "^3.1.3",
"vite": "^2.9.9",
"vite-plugin-css-injected-by-js": "^1.5.1",
"@fouita/cli": "0.0.1"
},
"dependencies": {
"d3-array": "^3.1.6",
"d3-scale": "^4.0.2",
"svelte-cubed": "^0.2.1",
"three": "^0.141.0"
}
}