Skip to content
This repository was archived by the owner on Nov 9, 2019. It is now read-only.

Commit 2cf31cb

Browse files
committed
meta: adding initial js/ts project files
1 parent 4276ded commit 2cf31cb

File tree

4 files changed

+38
-0
lines changed

4 files changed

+38
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/target
22
**/*.rs.bk
3+
/node_modules

package-lock.json

+14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "ds",
3+
"version": "1.0.0",
4+
"description": "javascript runtime",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/entropic-dev/ds.git"
12+
},
13+
"author": "Kat Marchán <[email protected]>",
14+
"license": "MIT",
15+
"bugs": {
16+
"url": "https://github.com/entropic-dev/ds/issues"
17+
},
18+
"homepage": "https://github.com/entropic-dev/ds#readme",
19+
"devDependencies": {
20+
"typescript": "^3.5.2"
21+
}
22+
}

src-ts/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log("hello world")

0 commit comments

Comments
 (0)