forked from scala-js/vite-plugin-scalajs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.04 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
{
"name": "@scala-js/vite-plugin-scalajs",
"version": "1.0.0",
"description": "Vite plugin for integration of Scala.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scala-js/vite-plugin-scalajs.git"
},
"keywords": [
"vite",
"vite-plugin",
"scala",
"scala-js"
],
"contributors": [
{
"name": "Sébastien Doeraene",
"url": "https://github.com/sjrd"
},
{
"name": "Tobias Schlatter",
"url": "https://github.com/gzm0"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/scala-js/vite-plugin-scalajs/issues"
},
"homepage": "https://github.com/scala-js/vite-plugin-scalajs#readme",
"devDependencies": {
"@types/node": "^18.14.2",
"typescript": "4.9.5",
"vitest": "^0.29.2"
},
"dependencies": {
"vite": "^4.1.4"
},
"type": "module",
"files": ["dist", "LICENSE", "README.md", "package.json"]
}