-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 998 Bytes
/
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
{
"name": "@internxt/eslint-config-internxt",
"author": "Internxt <[email protected]>",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/internxt/eslint-config-internxt.git"
},
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsc",
"publish:npm": "npm run build && npm publish --scope=@internxt --registry=https://registry.npmjs.org/ --access public",
"publish:github": "npm run build && npm publish --scope=@internxt --registry=https://npm.pkg.github.com"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE"
],
"peerDependencies": {
"eslint": ">=9.0.0",
"typescript": ">=4.2.0"
},
"engines": {
"node": ">=14.17.0"
},
"devDependencies": {
"@types/eslint-config-prettier": "^6.11.3",
"eslint": "^9.15.0",
"typescript": "^5.6.3"
},
"dependencies": {
"eslint-config-prettier": "^9.1.0",
"typescript-eslint": "^8.15.0"
}
}