-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.11 KB
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
{
"name": "@studiometa/eslint-plugin-js-toolkit",
"version": "3.6.0-beta.2",
"description": "Oxlint/ESLint plugin for @studiometa/js-toolkit best practices",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/studiometa/js-toolkit.git"
},
"author": "Studio Meta <agence@studiometa.fr> (https://www.studiometa.fr)",
"license": "MIT",
"type": "module",
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "node scripts/build.js",
"test": "vitest run",
"test:watch": "vitest",
"lint:types": "tsgo --build tsconfig.json"
},
"devDependencies": {
"@vitest/coverage-v8": "4.1.2",
"esbuild": "0.27.0",
"eslint": "9.34.0",
"typescript": "6.0.2",
"vitest": "4.1.2"
},
"dependencies": {
"@oxlint/plugins": "1.63.0"
}
}