-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 KB
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
{
"name": "sjs-nodejs",
"version": "2.0.0",
"description": "npm helper to bootstrap sbt and link Scala.js (Scala 3) to JavaScript",
"main": "index.js",
"scripts": {
"sbtInit": "node node_modules/sjs-nodejs/index.js",
"sjsBuild": "npm run sbtInit && node_modules/sbt/bin/sbt fastLinkJS",
"sjsBuildFull": "npm run sbtInit && node_modules/sbt/bin/sbt fullLinkJS",
"sjs": "node_modules/sbt/bin/sbt run",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/duwamish-os/sjs-nodejs.git"
},
"dependencies": {
"request": "^2.88.0",
"yauzl": "^2.10.0"
},
"keywords": [
"scalajs",
"scala3",
"sbt",
"npm"
],
"author": "prayagupa",
"license": "ISC",
"bugs": {
"url": "https://github.com/devasthali-os/sjs-nodejs/issues"
},
"homepage": "https://github.com/devasthali-os/sjs-nodejs#readme",
"engines": {
"node": ">=18"
},
"scalajs": {
"sbtVersion": "1.10.7",
"scalaVersion": "3.5.2",
"scalajsVersion": "1.21.0"
}
}