view-ignored 0.4.3 → 0.4.5

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 CHANGED
@@ -1,115 +1,119 @@
1
1
  {
2
- "name": "view-ignored",
3
- "version": "0.4.3",
4
- "description": "Retrieve list of files ignored/included by Git, NPM, Yarn, JSR, VSCE or other tools.",
5
- "type": "module",
6
- "bin": {
7
- "viewig": "./bin/viewig",
8
- "view-ignored": "./bin/viewig"
9
- },
10
- "scripts": {
11
- "prerelease": "bun run build:pub && bun run lint",
12
- "test": "bun run node --test out/**/*.test.js",
13
- "build": "bun run build:clean && bun run tsc -p src",
14
- "build:pub": "bun run build:clean && bun run tsc -p src --sourceMap false && rm **/*.test.d.ts",
15
- "build:watch": "bun run build:clean && bun run tsc -p src --watch",
16
- "build:clean": "rm -rf out",
17
- "lint": "bun run eslint .",
18
- "release:major": "bun run release-it --increment=major",
19
- "release:minor": "bun run release-it --increment=minor",
20
- "release:patch": "bun run release-it --increment=patch"
21
- },
22
- "author": "Mopsgamer",
23
- "license": "ISC",
24
- "main": "./out/src/index.js",
25
- "files": [
26
- "/bin",
27
- "/out",
28
- "!**/*.test.js"
29
- ],
30
- "repository": {
31
- "type": "git",
32
- "url": "https://github.com/Mopsgamer/view-ignored.git"
33
- },
34
- "bugs": {
35
- "url": "https://github.com/Mopsgamer/view-ignored/issues"
36
- },
37
- "homepage": "https://github.com/Mopsgamer/view-ignored",
38
- "exports": {
39
- ".": {
40
- "default": "./out/index.js",
41
- "types": "./out/index.d.ts"
42
- },
43
- "./browser": {
44
- "default": "./out/browser/index.js",
45
- "types": "./out/browser/index.d.ts"
46
- }
47
- },
48
- "release-it": {
49
- "hooks": {
50
- "before:init": "bun prerelease"
51
- },
52
- "plugins": {
53
- "@release-it/keep-a-changelog": {
54
- "filename": "CHANGELOG.md"
55
- }
56
- },
57
- "github": {
58
- "release": true,
59
- "draft": false,
60
- "releaseName": "${version}"
61
- },
62
- "npm": {
63
- "publish": true
64
- }
65
- },
66
- "publishConfig": {
67
- "access": "public"
68
- },
69
- "directories": {
70
- "lib": "out"
71
- },
72
- "dependencies": {
73
- "@humanwhocodes/gitignore-to-minimatch": "^1.0.2",
74
- "@m234/nerd-fonts": "^0.3.1",
75
- "ansi-regex": "^6.1.0",
76
- "boxen": "^8.0.1",
77
- "chalk": "^5.4.1",
78
- "commander": "^14.0.0",
79
- "jsonify-paths": "^1.1.0",
80
- "listr2": "^8.3.3",
81
- "load-plugin": "^6.0.3",
82
- "minimatch": "^10.0.3",
83
- "p-limit": "^6.2.0",
84
- "treeify": "^1.1.0",
85
- "yaml": "^2.8.0",
86
- "zod": "^3.25.75"
87
- },
88
- "devDependencies": {
89
- "@eslint/js": "^9.30.1",
90
- "@release-it/keep-a-changelog": "^7.0.0",
91
- "@stylistic/eslint-plugin": "^5.1.0",
92
- "@types/node": "^24.0.10",
93
- "@types/treeify": "^1.0.3",
94
- "eslint": "^9.30.1",
95
- "fs-fixture": "^2.8.1",
96
- "globals": "^16.3.0",
97
- "release-it": "^19.0.3",
98
- "typescript": "^5.8.3",
99
- "typescript-eslint": "^8.36.0"
100
- },
101
- "keywords": [
102
- "tree",
103
- "ls-tree",
104
- "ignore",
105
- "gitignore",
106
- "npmignore",
107
- "vscodeignore",
108
- "cli",
109
- "fs",
110
- "file-system",
111
- "output",
112
- "project",
113
- "migration"
114
- ]
2
+ "name": "view-ignored",
3
+ "version": "0.4.5",
4
+ "description": "Retrieve list of files ignored/included by Git, NPM, Yarn, JSR, VSCE or other tools.",
5
+ "type": "module",
6
+ "bin": {
7
+ "viewig": "./bin/viewig",
8
+ "view-ignored": "./bin/viewig"
9
+ },
10
+ "scripts": {
11
+ "prerelease": "bun run build:pub && bun run lint",
12
+ "test": "bun run node --test out/**/*.test.js",
13
+ "build": "bun run build:clean && bun run tsc -p src",
14
+ "build:pub": "bun run build:clean && bun run tsc -p src --sourceMap false && rm -rf **/*.test.*",
15
+ "build:watch": "bun run build:clean && bun run tsc -p src --watch",
16
+ "build:clean": "rm -rf out",
17
+ "lint": "bun run eslint .",
18
+ "release:major": "bun run release-it --increment=major",
19
+ "release:minor": "bun run release-it --increment=minor",
20
+ "release:patch": "bun run release-it --increment=patch"
21
+ },
22
+ "author": "Mopsgamer",
23
+ "license": "ISC",
24
+ "main": "./out/src/index.js",
25
+ "files": [
26
+ "/bin",
27
+ "/out",
28
+ "!**/*.test.js"
29
+ ],
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "https://github.com/Mopsgamer/view-ignored.git"
33
+ },
34
+ "bugs": {
35
+ "url": "https://github.com/Mopsgamer/view-ignored/issues"
36
+ },
37
+ "homepage": "https://github.com/Mopsgamer/view-ignored",
38
+ "engines": {
39
+ "node": ">=18"
40
+ },
41
+ "exports": {
42
+ ".": {
43
+ "default": "./out/index.js",
44
+ "types": "./out/index.d.ts"
45
+ },
46
+ "./browser": {
47
+ "default": "./out/browser/index.js",
48
+ "types": "./out/browser/index.d.ts"
49
+ }
50
+ },
51
+ "release-it": {
52
+ "hooks": {
53
+ "before:init": "bun prerelease"
54
+ },
55
+ "plugins": {
56
+ "@release-it/keep-a-changelog": {
57
+ "filename": "CHANGELOG.md"
58
+ }
59
+ },
60
+ "github": {
61
+ "release": true,
62
+ "draft": false,
63
+ "releaseName": "${version}"
64
+ },
65
+ "npm": {
66
+ "publish": true
67
+ }
68
+ },
69
+ "publishConfig": {
70
+ "access": "public"
71
+ },
72
+ "directories": {
73
+ "lib": "out"
74
+ },
75
+ "dependencies": {
76
+ "@humanwhocodes/gitignore-to-minimatch": "^1.0.2",
77
+ "@m234/nerd-fonts": "^0.3.1",
78
+ "ansi-regex": "^6.1.0",
79
+ "boxen": "^8.0.1",
80
+ "chalk": "^5.4.1",
81
+ "commander": "^14.0.0",
82
+ "jsonify-paths": "^1.1.0",
83
+ "load-plugin": "^6.0.3",
84
+ "minimatch": "^10.0.3",
85
+ "ora": "^8.2.0",
86
+ "p-limit": "^6.2.0",
87
+ "strip-json-comments": "^5.0.2",
88
+ "treeify": "^1.1.0",
89
+ "yaml": "^2.8.0",
90
+ "zod": "^3.25.75"
91
+ },
92
+ "devDependencies": {
93
+ "@eslint/js": "^9.30.1",
94
+ "@release-it/keep-a-changelog": "^7.0.0",
95
+ "@stylistic/eslint-plugin": "^5.1.0",
96
+ "@types/node": "18",
97
+ "@types/treeify": "^1.0.3",
98
+ "eslint": "^9.30.1",
99
+ "fs-fixture": "^2.8.1",
100
+ "globals": "^16.3.0",
101
+ "release-it": "^19.0.3",
102
+ "typescript": "^5.8.3",
103
+ "typescript-eslint": "^8.36.0"
104
+ },
105
+ "keywords": [
106
+ "tree",
107
+ "ls-tree",
108
+ "ignore",
109
+ "gitignore",
110
+ "npmignore",
111
+ "vscodeignore",
112
+ "cli",
113
+ "fs",
114
+ "file-system",
115
+ "output",
116
+ "project",
117
+ "migration"
118
+ ]
115
119
  }