-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.89 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "eslint-cdk-plugin",
"version": "1.0.3",
"description": "eslint plugin for AWS CDK projects",
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
},
"scripts": {
"build": "sh scripts/build.sh",
"test": "vitest --run",
"lint": "eslint --fix --config eslint.config.js",
"type-check": "tsc --noEmit",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"release:patch": "standard-version --release-as patch",
"docs:dev": "cd ./docs && pnpm install && pnpm run dev",
"docs:build": "cd ./docs && pnpm install && pnpm run build",
"docs:preview": "cd ./docs && pnpm install && pnpm run preview"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/estree": "^1.0.6",
"@types/node": "^22.9.0",
"@typescript-eslint/rule-tester": "^8.14.0",
"eslint": "9.10.0",
"eslint-plugin-import": "^2.31.0",
"pkgroll": "^2.6.0",
"standard-version": "^9.5.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"vitest": "^2.1.5"
},
"dependencies": {
"@typescript-eslint/utils": "^8.14.0"
},
"volta": {
"node": "22.11.0"
},
"files": [
"dist",
"src",
"!src/__tests__",
"README.md",
"LICENSE"
],
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"aws",
"cdk"
],
"homepage": "https://eslint-cdk-plugin.dev/",
"repository": {
"type": "git",
"url": "https://github.com/ren-yamanashi/eslint-cdk-plugin.git"
},
"author": {
"name": "ren-yamanashi"
},
"publishConfig": {
"access": "public"
},
"license": "MIT"
}