Skip to content

Commit d311c03

Browse files
committed
NPM!
1 parent 8859fcb commit d311c03

File tree

4 files changed

+30
-4
lines changed

4 files changed

+30
-4
lines changed

.npmignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
tests
2+
docs
3+
.github
4+
.vscode
5+
src
6+
7+
*.ts
8+
!*.d.ts

docs/style.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@500;600&family=Source+Serif+Pro&display=swap');
66

7+
.tsd-page-title {
8+
display: none;
9+
}
10+
711
.tsd-navigation {
812
padding-top: 0.33rem;
913
}

package.json

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
11
{
22
"name": "wasm-spider",
3-
"author": "",
3+
"author": "Tacodiva",
44
"version": "1.0.0",
5-
"description": "",
5+
"description": "WASM Spider is a fluent Typescript / Javascript library for creating and manipulating WebAssembly modules",
66
"keywords": [
7-
""
7+
"wasm",
8+
"webassembly",
9+
"typescript",
10+
"parser"
811
],
12+
"homepage": "https://emberj.sh/wasm-spider/",
13+
"bugs": {
14+
"url": "https://github.com/Tacodiva/wasm-spider/issues"
15+
},
16+
"repository": {
17+
"type": "git",
18+
"url": "https://github.com/Tacodiva/wasm-spider.git"
19+
},
20+
921
"license": "MIT",
1022
"main": "dist/cjs/index.js",
1123
"module": "dist/esm/index.mjs",

tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
2+
"files": [
3+
"src/index.ts"
4+
],
25
"compilerOptions": {
36
"target": "ES2015",
47
"lib": [
@@ -12,7 +15,6 @@
1215
"outDir": "dist",
1316
"module": "ES2015",
1417
"moduleResolution": "node",
15-
1618
"skipLibCheck": true
1719
},
1820
"exclude": [

0 commit comments

Comments
 (0)