generated from leandrosimoes/ls-node-cli-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.85 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "moises-node",
"version": "1.0.6",
"description": "Non-official Moises AI (https://developer.moises.ai/) API wrapper package with Typescript support",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"type": "module",
"scripts": {
"lint": "tsc --project tsconfig.json --noEmit && eslint . --ext .js,.ts",
"lint:fix": "tsc --project tsconfig.json --noEmit && eslint . --ext .js,.ts --fix",
"clear": "rm -rf ./dist",
"build": "npm run clear && npm run lint:fix && tsc --project tsconfig.json",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leandrosimoes/moises.git",
"baseUrl": "https://github.com/leandrosimoes/moises"
},
"keywords": [
"moises",
"moisesai",
"ai",
"track",
"separation",
"music"
],
"author": {
"name": "Leandro Simões",
"email": "leandro.simoes@outlook.com"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-node": "^0.3.7",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
},
"dependencies": {
"glob": "^10.3.3",
"node-fetch": "^3.3.1",
"p-queue": "^7.3.4"
}
}