|
1 | 1 | { |
2 | | - "name": "node-lame", |
3 | | - "version": "1.5.1", |
4 | | - "description": "LAME MP3 encoder for Node.js", |
5 | | - "homepage": "https://github.com/devowlio/node-lame", |
6 | | - "repository": { |
7 | | - "type": "git", |
8 | | - "url": "git+https://github.com/devowlio/node-lame.git" |
9 | | - }, |
10 | | - "bugs": { |
11 | | - "url": "https://github.com/devowlio/node-lame/issues" |
12 | | - }, |
13 | | - "author": { |
14 | | - "name": "Jan Karres", |
15 | | - |
16 | | - "url": "https://jankarres.com/" |
17 | | - }, |
18 | | - "license": "ISC", |
19 | | - "type": "module", |
20 | | - "packageManager": "[email protected]", |
21 | | - "engines": { |
22 | | - "node": ">=20" |
23 | | - }, |
24 | | - "main": "./dist/index.cjs", |
25 | | - "module": "./dist/index.mjs", |
26 | | - "types": "./dist/index.d.ts", |
27 | | - "exports": { |
28 | | - ".": { |
29 | | - "types": "./dist/index.d.ts", |
30 | | - "import": "./dist/index.mjs", |
31 | | - "require": "./dist/index.cjs", |
32 | | - "default": "./dist/index.mjs" |
33 | | - } |
34 | | - }, |
35 | | - "files": [ |
36 | | - "dist/", |
37 | | - "README.md", |
38 | | - "LICENSE" |
39 | | - ], |
40 | | - "scripts": { |
41 | | - "build": "tsup", |
42 | | - "clean": "rm -rf dist", |
43 | | - "lint": "eslint . --ext .ts,.mjs", |
44 | | - "format": "prettier --check .", |
45 | | - "typecheck": "tsup --dts-only --silent", |
46 | | - "test": "pnpm run test:unit && pnpm run test:integration", |
47 | | - "test:unit": "vitest run tests/unit --coverage", |
48 | | - "test:integration": "vitest run tests/integration", |
49 | | - "fix": "pnpm exec eslint . --ext .ts,.mjs --fix && pnpm exec prettier --write .", |
50 | | - "postinstall": "node ./scripts/install-lame.mjs", |
51 | | - "prepublishOnly": "pnpm run build" |
52 | | - }, |
53 | | - "keywords": [ |
54 | | - "mp3", |
55 | | - "wav", |
56 | | - "LAME", |
57 | | - "MPEG-1", |
58 | | - "MPEG-2", |
59 | | - "encoder", |
60 | | - "audio" |
61 | | - ], |
62 | | - "dependencies": { |
63 | | - "extract-zip": "~2.0.1", |
64 | | - "tar": "~7.5.1" |
65 | | - }, |
66 | | - "devDependencies": { |
67 | | - "@eslint/js": "~9.38.0", |
68 | | - "@types/node": "~20.14.8", |
69 | | - "@typescript-eslint/eslint-plugin": "~8.46.2", |
70 | | - "@typescript-eslint/parser": "~8.46.2", |
71 | | - "@vitest/coverage-istanbul": "~4.0.4", |
72 | | - "eslint": "~9.38.0", |
73 | | - "eslint-config-prettier": "~10.1.8", |
74 | | - "globals": "~16.4.0", |
75 | | - "prettier": "~3.6.2", |
76 | | - "tsup": "~8.5.0", |
77 | | - "typescript": "~5.9.3", |
78 | | - "vitest": "~4.0.4" |
| 2 | + "name": "node-lame", |
| 3 | + "version": "1.5.1", |
| 4 | + "description": "LAME MP3 encoder for Node.js", |
| 5 | + "homepage": "https://github.com/devowlio/node-lame", |
| 6 | + "repository": { |
| 7 | + "type": "git", |
| 8 | + "url": "git+https://github.com/devowlio/node-lame.git" |
| 9 | + }, |
| 10 | + "bugs": { |
| 11 | + "url": "https://github.com/devowlio/node-lame/issues" |
| 12 | + }, |
| 13 | + "author": { |
| 14 | + "name": "Jan Karres", |
| 15 | + |
| 16 | + "url": "https://jankarres.com/" |
| 17 | + }, |
| 18 | + "license": "ISC", |
| 19 | + "type": "module", |
| 20 | + "packageManager": "[email protected]", |
| 21 | + "engines": { |
| 22 | + "node": ">=20" |
| 23 | + }, |
| 24 | + "main": "./dist/index.cjs", |
| 25 | + "module": "./dist/index.mjs", |
| 26 | + "types": "./dist/index.d.ts", |
| 27 | + "exports": { |
| 28 | + ".": { |
| 29 | + "types": "./dist/index.d.ts", |
| 30 | + "import": "./dist/index.mjs", |
| 31 | + "require": "./dist/index.cjs", |
| 32 | + "default": "./dist/index.mjs" |
79 | 33 | } |
| 34 | + }, |
| 35 | + "files": [ |
| 36 | + "dist/", |
| 37 | + "README.md", |
| 38 | + "LICENSE" |
| 39 | + ], |
| 40 | + "scripts": { |
| 41 | + "build": "tsup", |
| 42 | + "clean": "rm -rf dist", |
| 43 | + "lint": "eslint . --ext .ts,.mjs", |
| 44 | + "format": "prettier --check .", |
| 45 | + "typecheck": "tsup --dts-only --silent", |
| 46 | + "test": "pnpm run test:unit && pnpm run test:integration", |
| 47 | + "test:unit": "vitest run tests/unit --coverage", |
| 48 | + "test:integration": "vitest run tests/integration", |
| 49 | + "fix": "pnpm exec eslint . --ext .ts,.mjs --fix && pnpm exec prettier --write .", |
| 50 | + "postinstall": "node ./scripts/install-lame.mjs", |
| 51 | + "prepublishOnly": "pnpm run build", |
| 52 | + "prepare": "husky", |
| 53 | + "changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s", |
| 54 | + "release:version": "HUSKY=0 pnpm lerna version --yes --no-commit-hooks", |
| 55 | + "release:publish": "pnpm lerna publish from-git --yes --create-release github", |
| 56 | + "release": "pnpm run release:version && pnpm run release:publish" |
| 57 | + }, |
| 58 | + "keywords": [ |
| 59 | + "mp3", |
| 60 | + "wav", |
| 61 | + "LAME", |
| 62 | + "MPEG-1", |
| 63 | + "MPEG-2", |
| 64 | + "encoder", |
| 65 | + "audio" |
| 66 | + ], |
| 67 | + "dependencies": { |
| 68 | + "extract-zip": "~2.0.1", |
| 69 | + "tar": "~7.5.1" |
| 70 | + }, |
| 71 | + "devDependencies": { |
| 72 | + "@commitlint/cli": "~20.1.0", |
| 73 | + "@commitlint/config-conventional": "~20.0.0", |
| 74 | + "@eslint/js": "~9.38.0", |
| 75 | + "@types/node": "~20.14.8", |
| 76 | + "@typescript-eslint/eslint-plugin": "~8.46.2", |
| 77 | + "@typescript-eslint/parser": "~8.46.2", |
| 78 | + "@vitest/coverage-istanbul": "~4.0.4", |
| 79 | + "conventional-changelog-cli": "^5.0.0", |
| 80 | + "eslint": "~9.38.0", |
| 81 | + "eslint-config-prettier": "~10.1.8", |
| 82 | + "globals": "~16.4.0", |
| 83 | + "husky": "~9.1.7", |
| 84 | + "lerna": "~9.0.0", |
| 85 | + "prettier": "~3.6.2", |
| 86 | + "tsup": "~8.5.0", |
| 87 | + "typescript": "~5.9.3", |
| 88 | + "vitest": "~4.0.4" |
| 89 | + } |
80 | 90 | } |
0 commit comments