-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "@choreography-ts/eslint-plugin-choreography-ts",
"type": "commonjs",
"version": "1.0.0",
"description": "Custom ESLint plugin for choreographic programming",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"typings": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"clean": "rimraf dist",
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"test": "vitest run --silent",
"coverage": "vitest run --silent --coverage",
"typecheck": "tsc --noemit"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Rohan Kapur",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/parser": "^5.59.6",
"@typescript-eslint/rule-tester": "^6.1.0",
"@typescript-eslint/types": "^6.1.0",
"tsup": "^7.2.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@typescript-eslint/utils": "^6.1.0"
}
}