compile-cljsdt 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +2 -0
  2. package/package.json +29 -0
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ console.log("vamo pra cima!")
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "compile-cljsdt",
3
+ "version": "0.0.2",
4
+ "description": "A compiler for a Clojurescript Dialect with Dependent Types",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "publish-patch": "npm version patch && npm publish",
8
+ "publish-minor": "npm version minor && npm publish",
9
+ "publish-major": "npm version major && npm publish"
10
+ },
11
+ "bin": {
12
+ "compile-cljsdt": "./index.mjs"
13
+ },
14
+ "keywords": [
15
+ "lambda",
16
+ "type theory",
17
+ "dependent types",
18
+ "clj",
19
+ "cljs",
20
+ "clojure",
21
+ "clojurescript"
22
+ ],
23
+ "author": "rho-softwares",
24
+ "license": "MIT",
25
+ "dependencies": {
26
+ "cfonts": "^3.3.1",
27
+ "nbb": "^1.3.204"
28
+ }
29
+ }