|
1 | 1 | { |
2 | 2 | "name": "@typespec/graphql", |
3 | 3 | "version": "0.1.0", |
| 4 | + "author": "Microsoft Corporation", |
| 5 | + "description": "TypeSpec library for emitting GraphQL", |
| 6 | + "homepage": "https://typespec.io", |
| 7 | + "readme": "https://github.com/microsoft/typespec/blob/main/README.md", |
| 8 | + "license": "MIT", |
| 9 | + "repository": { |
| 10 | + "type": "git", |
| 11 | + "url": "git+https://github.com/microsoft/typespec.git" |
| 12 | + }, |
| 13 | + "bugs": { |
| 14 | + "url": "https://github.com/microsoft/typespec/issues" |
| 15 | + }, |
| 16 | + "keywords": [ |
| 17 | + "typespec" |
| 18 | + ], |
4 | 19 | "type": "module", |
5 | 20 | "main": "dist/src/index.js", |
6 | 21 | "exports": { |
|
13 | 28 | "default": "./dist/src/testing/index.js" |
14 | 29 | } |
15 | 30 | }, |
16 | | - "peerDependencies": { |
17 | | - "@typespec/compiler": "workspace:~" |
18 | | - }, |
19 | | - "devDependencies": { |
20 | | - "@types/node": "~22.7.5", |
21 | | - "rimraf": "~6.0.1", |
22 | | - "source-map-support": "~0.5.21", |
23 | | - "typescript": "~5.6.3", |
24 | | - "vitest": "^2.1.2" |
| 31 | + "engines": { |
| 32 | + "node": ">=18.0.0" |
25 | 33 | }, |
26 | 34 | "scripts": { |
27 | 35 | "clean": "rimraf ./dist ./temp", |
|
32 | 40 | "lint": "eslint src/ test/ --report-unused-disable-directives --max-warnings=0", |
33 | 41 | "lint:fix": "eslint . --report-unused-disable-directives --fix" |
34 | 42 | }, |
35 | | - "private": true |
| 43 | + "files": [ |
| 44 | + "lib/*.tsp", |
| 45 | + "dist/**", |
| 46 | + "!dist/test/**" |
| 47 | + ], |
| 48 | + "peerDependencies": { |
| 49 | + "@typespec/compiler": "workspace:~" |
| 50 | + }, |
| 51 | + "devDependencies": { |
| 52 | + "@types/node": "~22.7.5", |
| 53 | + "@typespec/compiler": "workspace:~", |
| 54 | + "rimraf": "~6.0.1", |
| 55 | + "source-map-support": "~0.5.21", |
| 56 | + "typescript": "~5.6.3", |
| 57 | + "vitest": "^2.1.2" |
| 58 | + } |
36 | 59 | } |
0 commit comments