-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.61 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@eslint-sets/monorepo",
"description": "eslint-sets",
"version": "5.14.0",
"packageManager": "[email protected]",
"main": "index.js",
"module": "index.mjs",
"files": [
"index.js",
"typings",
"*.d.ts"
],
"scripts": {
"reinstall": "tscjs scripts/reinstall",
"lib": "sh scripts/lib.sh",
"docs": "sh scripts/docs.sh --docs",
"push": "tscjs scripts/push",
"build": "tscjs scripts/build",
"build:rollup": "cross-env NODE_OPTIONS=\"--max-old-space-size=6144\" rollup -c",
"workflow:publish-test": "zx scripts/workflow.mjs",
"pub": "tscjs scripts/publish",
"unpub": "tscjs scripts/unpublish",
"sync": "tscjs scripts/sync",
"viewInfo": "tscjs scripts/viewInfo",
"update": "tscjs scripts/update",
"dist": "pnpm run update && pnpm build",
"eslint": "eslint --fix --ext .ts,.tsx,.js,.jsx ./",
"prettier": "prettier --write ./",
"prepare": "pnpm -r run stub",
"clean": "rm-all dist types typings temp"
},
"dependencies": {
"@node-kit/extra.fs": "^3.2.0"
},
"devDependencies": {
"@eslint-sets/eslint-config": "workspace:*",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.1",
"chalk": "^5.3.0",
"consola": "^3.2.3",
"cross-env": "^7.0.3",
"esbuild": "^0.24.0",
"esbuild-register": "^3.6.0",
"eslint": "^8.57.1",
"fast-glob": "^3.3.2",
"jest": "^29.7.0",
"js-cool": "^5.23.0",
"load-yml": "^1.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-config-common": "^1.4.0",
"reinstaller": "^3.0.2",
"rm-all": "^1.1.1",
"rollup": "^4.27.3",
"rollup-plugin-add-banner": "^1.1.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-inject-code": "^1.1.0",
"rollup-plugin-replace-shebang": "^1.2.0",
"rollup-plugin-visualizer": "^5.12.0",
"tsnd": "^1.1.0",
"typedoc": "^0.26.11",
"typedoc-plugin-markdown": "^4.2.10",
"typescript": "~5.6.3",
"zx": "^8.2.2"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/core",
"webpack"
],
"allowedVersions": {
"eslint": ">=7.4.0"
}
}
},
"keywords": [
"eslint-sets",
"vue",
"vue3.0"
],
"license": "MIT",
"author": "saqqdy.com",
"homepage": "https://github.com/saqqdy/eslint-sets#readme",
"bugs": {
"url": "https://github.com/saqqdy/eslint-sets/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saqqdy/eslint-sets.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}