sync
This commit is contained in:
47
package.json
47
package.json
@@ -1,20 +1,32 @@
|
||||
{
|
||||
"name": "@dash-converter/core",
|
||||
"version": "1.0.0",
|
||||
"name": "@grom13/dvc-cli",
|
||||
"version": "0.1.0",
|
||||
"description": "Fast DASH video converter with NVENC acceleration and thumbnail sprites",
|
||||
"type": "module",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"bin": {
|
||||
"dvc": "./bin/cli.js"
|
||||
},
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts"
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"bin",
|
||||
"README.md",
|
||||
"LICENSE"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "bun build src/index.ts --outdir dist --target node",
|
||||
"dev": "bun run src/index.ts",
|
||||
"example": "bun run examples/basic.ts"
|
||||
"build": "npm run build:lib && npm run build:cli",
|
||||
"build:lib": "bun build src/index.ts --outdir dist --target node && tsc --emitDeclarationOnly",
|
||||
"build:cli": "bun build src/cli.ts --outfile bin/cli.js --target node --minify",
|
||||
"prepublishOnly": "npm run build",
|
||||
"dev": "bun run src/cli.ts",
|
||||
"test": "bun run src/cli.ts"
|
||||
},
|
||||
"keywords": [
|
||||
"dash",
|
||||
@@ -22,20 +34,31 @@
|
||||
"converter",
|
||||
"ffmpeg",
|
||||
"nvenc",
|
||||
"streaming"
|
||||
"streaming",
|
||||
"cli",
|
||||
"video-processing",
|
||||
"adaptive-streaming",
|
||||
"thumbnails"
|
||||
],
|
||||
"author": "",
|
||||
"author": "grom13",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/grom13/dvc-cli.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/grom13/dvc-cli/issues"
|
||||
},
|
||||
"homepage": "https://github.com/grom13/dvc-cli#readme",
|
||||
"engines": {
|
||||
"node": ">=18.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/bun": "^1.3.2",
|
||||
"@types/cli-progress": "^3.11.6",
|
||||
"typescript": "^5.3.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"bun": ">=1.0.0"
|
||||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@types/cli-progress": "^3.11.6",
|
||||
"cli-progress": "^3.12.0"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user