@adamaho/nopeus-oxlint-plugin 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,72 @@
1
+ {
2
+ "name": "@adamaho/nopeus-oxlint-plugin",
3
+ "version": "0.7.0",
4
+ "description": "The canonical strict Oxlint policy for AI-assisted TypeScript codebases.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/adamaho/nopeus.git",
9
+ "directory": "packages/nopeus-oxlint-plugin"
10
+ },
11
+ "files": [
12
+ "dist",
13
+ "LICENSE",
14
+ "README.md"
15
+ ],
16
+ "type": "module",
17
+ "sideEffects": false,
18
+ "imports": {
19
+ "#src/*": "./src/*",
20
+ "#test/*": "./test/*"
21
+ },
22
+ "exports": {
23
+ ".": {
24
+ "types": "./dist/index.d.mts",
25
+ "import": "./dist/index.mjs"
26
+ },
27
+ "./effect": {
28
+ "types": "./dist/effect.d.mts",
29
+ "import": "./dist/effect.mjs"
30
+ },
31
+ "./base": {
32
+ "types": "./dist/base.d.mts",
33
+ "import": "./dist/base.mjs"
34
+ }
35
+ },
36
+ "publishConfig": {
37
+ "access": "public",
38
+ "registry": "https://registry.npmjs.org"
39
+ },
40
+ "dependencies": {
41
+ "@oxlint/plugins": "1.81.0",
42
+ "oxc-resolver": "11.24.2"
43
+ },
44
+ "devDependencies": {
45
+ "@adamaho/nopeus-oxlint-config": "0.4.0",
46
+ "@effect/vitest": "4.0.0-rc.112",
47
+ "@nopeus/tool-tsconfig": "0.0.0",
48
+ "@nopeus/tool-tsdown-config": "0.0.0",
49
+ "@types/node": "24.13.3",
50
+ "effect": "4.0.0-rc.112",
51
+ "oxlint": "1.81.0",
52
+ "rimraf": "6.1.3",
53
+ "tsdown": "0.23.0",
54
+ "typescript": "7.0.2",
55
+ "vitest": "4.1.11"
56
+ },
57
+ "peerDependencies": {
58
+ "oxlint": ">=1.79.0 <2"
59
+ },
60
+ "engines": {
61
+ "node": "^22.18.0 || >=24.0.0"
62
+ },
63
+ "scripts": {
64
+ "build": "tsdown",
65
+ "clean": "rimraf node_modules dist build .turbo coverage tsconfig.tsbuildinfo",
66
+ "lint": "oxlint --config oxlint.config.ts src test",
67
+ "test:unit": "vitest run",
68
+ "tsc": "tsc --noEmit",
69
+ "test:integration": "vitest run --config vitest.integration.config.ts",
70
+ "test:package": "vitest run --config vitest.package.config.ts"
71
+ }
72
+ }