microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
abd213cd488a512fc2da78fc209f25cbf235ae41

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.52.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://microsoft.github.io/typespec",
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": ">=0.8.0"
41 },
42 "devDependencies": {
43 "@types/node": "~18.11.9",
44 "@typespec/eslint-config-typespec": "workspace:~0.52.0",
45 "@typescript-eslint/parser": "^6.14.0",
46 "@typescript-eslint/rule-tester": "~6.14.0",
47 "eslint": "^8.55.0",
48 "vitest": "^1.2.0",
49 "@vitest/coverage-v8": "^1.1.0",
50 "@vitest/ui": "~1.1.3",
51 "c8": "~8.0.1",
52 "rimraf": "~5.0.1",
53 "typescript": "~5.3.3"
54 },
55 "dependencies": {
56 "@typescript-eslint/utils": "~6.14.0"
57 }
58}
59