-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.85 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
{
"name": "eslint-plugin-typeorm-typescript",
"version": "0.5.0",
"description": "An ESLint plugin to catch mistakes if the TypeORM column types and TypeScript types aren't consistent.",
"main": "dist/index.js",
"type": "module",
"files": [
"dist",
"es"
],
"exports": {
".": {
"import": "./es/index.js",
"require": "./dist/index.js"
},
"./recommended": {
"import": "./es/recommended.js",
"require": "./dist/recommended.js"
}
},
"scripts": {
"prebuild:cjs": "sed -i 's/\"type\": \"module\"/\"type\": \"commonjs\"/' package.json",
"build:cjs": "tsc -p tsconfig.json",
"postbuild:cjs": "sed -i 's/\"type\": \"commonjs\"/\"type\": \"module\"/' package.json",
"build:es": "tsc -p tsconfig.es.json",
"build": "npm run build:cjs && npm run build:es",
"lint": "eslint src/",
"test": "vitest run"
},
"homepage": "https://github.com/daniel7grant/eslint-plugin-typeorm-typescript",
"repository": {
"type": "git",
"url": "git+https://github.com/daniel7grant/eslint-plugin-typeorm-typescript.git"
},
"keywords": [
"eslint",
"typeorm",
"typescript"
],
"author": "Daniel Grant",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/eslint": "^9.6.0",
"@types/node": "^22.1.0",
"@typescript-eslint/rule-tester": "^8.0.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0",
"typescript-eslint": "^8.0.0",
"vitest": "^2.0.5"
},
"dependencies": {
"@typescript-eslint/parser": "^8.0.0",
"@typescript-eslint/utils": "^8.0.0",
"typescript": "^5.5.4"
}
}