microsoft/typespec

Public

mirrored from https://github.com/microsoft/typespecAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
ce9c567e5bfb441bb6415699a6b6fa797bc08f2e

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

packages/eslint-plugin-typespec/package.json

58lines · modecode

1{
2 "name": "@typespec/eslint-plugin",
3 "version": "0.54.0",
4 "author": "Microsoft Corporation",
5 "description": "Eslint plugin providing set of rules to be used in the JS/TS code of TypeSpec libraries",
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 ],
19 "type": "commonjs",
20 "main": "dist/src/index.js",
21 "engines": {
22 "node": ">=14.0.0"
23 },
24 "scripts": {
25 "clean": "rimraf ./dist ./temp",
26 "build": "tsc -p .",
27 "watch": "tsc -p . --watch",
28 "test": "vitest run",
29 "test:ui": "vitest --ui",
30 "test-official": "vitest run --coverage --reporter=junit --reporter=default --no-file-parallelism",
31 "lint": "eslint . --ext .ts --max-warnings=0",
32 "lint:fix": "eslint . --fix --ext .ts"
33 },
34 "files": [
35 "lib/*.tsp",
36 "dist/**",
37 "!dist/test/**"
38 ],
39 "peerDependencies": {
40 "eslint": "^8.57.0"
41 },
42 "devDependencies": {
43 "@types/node": "~18.11.19",
44 "@typescript-eslint/parser": "^7.2.0",
45 "@typescript-eslint/rule-tester": "~7.2.0",
46 "@typespec/eslint-config-typespec": "workspace:~",
47 "@vitest/coverage-v8": "^1.4.0",
48 "@vitest/ui": "^1.4.0",
49 "c8": "^9.1.0",
50 "eslint": "^8.57.0",
51 "rimraf": "~5.0.5",
52 "typescript": "~5.4.2",
53 "vitest": "^1.4.0"
54 },
55 "dependencies": {
56 "@typescript-eslint/utils": "~7.2.0"
57 }
58}
59