|
2 | 2 | "name": "vsix-builder",
|
3 | 3 | "type": "module",
|
4 | 4 | "version": "0.0.1",
|
5 |
| - "description": "A programmatic way to create VSIX files for Visual Studio Code extensions." |
| 5 | + "description": "A programmatic way to create VSIX files for Visual Studio Code extensions.", |
| 6 | + "author": { |
| 7 | + "name": "Lucas Nørgård", |
| 8 | + |
| 9 | + "url": "https://luxass.dev" |
| 10 | + }, |
| 11 | + "packageManager": "[email protected]", |
| 12 | + "license": "MIT", |
| 13 | + "homepage": "https://github.com/luxass/vsix-builder", |
| 14 | + "repository": { |
| 15 | + "type": "git", |
| 16 | + "url": "git+https://github.com/luxass/vsix-builder.git" |
| 17 | + }, |
| 18 | + "bugs": { |
| 19 | + "url": "https://github.com/luxass/vsix-builder/issues" |
| 20 | + }, |
| 21 | + "exports": { |
| 22 | + ".": { |
| 23 | + "import": { |
| 24 | + "types": "./dist/index.d.ts", |
| 25 | + "default": "./dist/index.mjs" |
| 26 | + }, |
| 27 | + "require": { |
| 28 | + "types": "./dist/index.d.cts", |
| 29 | + "default": "./dist/index.cjs" |
| 30 | + } |
| 31 | + }, |
| 32 | + "./package.json": "./package.json" |
| 33 | + }, |
| 34 | + "main": "dist/index.cjs", |
| 35 | + "module": "dist/index.mjs", |
| 36 | + "types": "dist/index.d.ts", |
| 37 | + "files": [ |
| 38 | + "dist" |
| 39 | + ], |
| 40 | + "scripts": { |
| 41 | + "build": "tsup", |
| 42 | + "dev": "tsup --watch", |
| 43 | + "lint": "biome lint", |
| 44 | + "lint:fix": "biome lint --write", |
| 45 | + "format": "biome format", |
| 46 | + "format:fix": "biome format --write", |
| 47 | + "test": "vitest --run", |
| 48 | + "test:watch": "vitest", |
| 49 | + "typecheck": "tsc --noEmit" |
| 50 | + }, |
| 51 | + "dependencies": { |
| 52 | + "ignore": "^7.0.0", |
| 53 | + "package-manager-detector": "^0.2.8", |
| 54 | + "semver": "^7.6.3", |
| 55 | + "tinyglobby": "^0.2.10", |
| 56 | + "zod": "^3.23.8" |
| 57 | + }, |
| 58 | + "devDependencies": { |
| 59 | + "@biomejs/biome": "^1.9.3", |
| 60 | + "@types/node": "20.16.11", |
| 61 | + "@types/semver": "^7.5.8", |
| 62 | + "tsup": "^8.3.0", |
| 63 | + "typescript": "^5.6.3", |
| 64 | + "vitest": "^2.1.3", |
| 65 | + "vitest-testdirs": "^1.4.0" |
| 66 | + } |
6 | 67 | }
|
0 commit comments