chore: add readme.

This commit is contained in:
Yufan Sheng 2024-07-08 20:05:34 +08:00
parent d68b066919
commit 406b89ab08
Signed by: syhily
GPG Key ID: DEB186763C308C31
4 changed files with 3828 additions and 0 deletions

6
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,6 @@
{
"cSpell.words": [
"metingjs",
"netease"
]
}

View File

@ -1,2 +1,5 @@
![Meting](https://user-images.githubusercontent.com/2666735/30651452-58ae6c88-9deb-11e7-9e13-6beae3f6c54c.png)
# MetingJS
🍰 Wow, such a powerful music API framework in node.js

3777
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

42
package.json Normal file
View File

@ -0,0 +1,42 @@
{
"name": "metingjs",
"version": "1.0.0",
"description": "Wow, such a powerful music API framework in node.js",
"keywords": [
"meting",
"netease"
],
"homepage": "https://github.com/syhily/MetingJS#readme",
"bugs": {
"url": "https://github.com/syhily/MetingJS/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/syhily/MetingJS.git"
},
"license": "MIT",
"author": "Yufan Sheng <syhily@gmail.com>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"format": "npx biome format --write",
"stub": "unbuild --stub"
},
"devDependencies": {
"@types/node": "^20.14.9",
"unbuild": "^2.0.0"
}
}