docs
This commit is contained in:
parent
4c5d981e7f
commit
03325a1c63
8 changed files with 332 additions and 13 deletions
15
package.json
15
package.json
|
|
@ -6,8 +6,12 @@
|
|||
"types": "./lib/index.d.ts",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"build": "tsc",
|
||||
"watch": "tsc --watch"
|
||||
"compile": "tsc",
|
||||
"watch": "tsc --watch",
|
||||
"docs": "typedoc --out docs ./src/index.ts",
|
||||
"nojekyll": "touch ./docs/.nojekyll",
|
||||
"clean": "rimraf lib",
|
||||
"build": "run-s clean compile docs nojekyll"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
@ -23,10 +27,11 @@
|
|||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"osc-min": "^1.1.2",
|
||||
"@types/node": "^14.14.22",
|
||||
"typescript": "^4.1.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"rimraf": "^3.0.2"
|
||||
"rimraf": "^3.0.2",
|
||||
"typedoc": "^0.20.16",
|
||||
"@types/node": "^14.14.22",
|
||||
"typescript": "^4.1.3"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue