mirror of https://github.com/Chocobozzz/PeerTube
22 lines
543 B
JSON
22 lines
543 B
JSON
|
{
|
||
|
"name": "@peertube/peertube-transcription",
|
||
|
"private": true,
|
||
|
"version": "0.0.0",
|
||
|
"main": "dist/index.js",
|
||
|
"files": [ "dist" ],
|
||
|
"exports": {
|
||
|
"types": "./dist/index.d.ts",
|
||
|
"peertube:tsx": "./src/index.ts",
|
||
|
"default": "./dist/index.js"
|
||
|
},
|
||
|
"type": "module",
|
||
|
"devDependencies": {},
|
||
|
"scripts": {
|
||
|
"preinstall": "pip install -r requirements.txt",
|
||
|
"build": "tsc",
|
||
|
"watch": "tsc -w",
|
||
|
"benchmark": "tsx --conditions=peertube:tsx --tsconfig ./tsconfig.json ./src/benchmark.ts"
|
||
|
},
|
||
|
"dependencies": {}
|
||
|
}
|