-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.26 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
{
"name": "sveltris",
"version": "0.1.0",
"description": "Piece together any framework with Svelte (like Tetris)",
"main": "./dist/index.js",
"exports": {
"./react": {
"browser": "./dist/react/browser.mjs",
"node": "./dist/react/node.js",
"default": "./dist/react/browser.js"
},
"./svelte": {
"browser": "./dist/svelte/browser.mjs",
"node": "./dist/svelte/node.js",
"default": "./dist/svelte/browser.js"
},
".": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mokshit06/sveltris.git"
},
"scripts": {
"build": "tsup",
"watch": "npm run build -- --watch"
},
"keywords": [],
"author": {
"name": "Mokshit Jain",
"url": "https://mokshitjain.co",
"email": "[email protected]"
},
"license": "MIT",
"files": [
"src",
"dist"
],
"dependencies": {
"outdent": "^0.8.0",
"react-nil": "^1.2.0",
"unplugin": "^1.3.1"
},
"devDependencies": {
"@types/node": "^18.15.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"esbuild": "^0.17.15",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"svelte": "^3.58.0",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vite": "^4.2.1"
}
}