forked from Rick-and-Bora3y-Devs/faustpublish
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "@grame/faustpublisher",
"version": "1.1.3",
"description": "Publish libraries to the official Faust registry",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "npx tsc",
"install-local": "npm install && npm run build && npm link",
"publish": "npm build && npm login && npm publish --access public",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grame-cncm/faustpublisher.git"
},
"keywords": [
"faust"
],
"author": "Shehab Khaled, GRAME-CNCM",
"license": "MIT",
"homepage": "https://github.com/grame-cncm/faustpublisher.git#readme",
"bin": {
"faustpublisher": "bin/run.js"
},
"oclif": {
"bin": "faustpublisher",
"commands": "./dist/commands",
"dirname": "faustpublisher",
"topicSeparator": " "
},
"dependencies": {
"@oclif/core": "^4.0.14",
"@octokit/auth-oauth-device": "^7.1.1",
"@octokit/core": "^6.1.2",
"axios": "^1.7.2"
},
"devDependencies": {
"@types/node": "^18.19.42",
"ts-node": "^10.9.2"
}
}