-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "@antzy/ieslint",
"version": "0.2.1",
"description": "generate my eslint config",
"main": "bin/ieslint.js",
"type": "module",
"bin": {
"ies": "bin/ieslint.js"
},
"files": [
"dist",
"cli"
],
"scripts": {
"dev": "pnpm build --watch",
"build": "tsup --config tsup.config.ts",
"test": "npm -C playground run start",
"release": "bumpp package.json --commit --push --tag"
},
"homepage": "https://github.com/AntzyMo/ieslint-cli#readme",
"keywords": [
"eslint",
"config",
"generator"
],
"author": "AntzyMo <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/AntzyMo/ieslint-cli.git"
},
"license": "ISC",
"devDependencies": {
"@antzy/eslint-config": "^3.2.1",
"@types/node": "^20.8.4",
"bumpp": "^9.2.0",
"eslint": "^8.51.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"commander": "^11.0.0",
"diff": "^5.1.0",
"execa": "^8.0.1",
"kolorist": "^1.8.0",
"local-pkg": "^0.5.0",
"prompts": "^2.4.2"
}
}