-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.2 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.2 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
48
49
50
51
52
{
"name": "ls-json",
"version": "1.5.1",
"description": "parse ls output to json",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npx tsc && npx tsc --module esnext --outDir dist/esm && mv dist/esm/index.js dist/index.esm.js && rm -rf dist/esm",
"prettier": "npx prettier --write src/**/*.ts",
"prepublishOnly": "pnpm run build",
"start": "npx tsx ./src/index.ts",
"test": "vitest run"
},
"keywords": [
"ls",
"json",
"parser",
"command-line",
"file-listing",
"jc",
"unix",
"linux",
"filesystem"
],
"author": "Reed Chan <xinyuchen77@gmail.com>",
"license": "Apache-2.0",
"packageManager": "pnpm@10.17.0",
"repository": {
"type": "git",
"url": "https://github.com/reedchan7/ls-json.git"
},
"homepage": "https://github.com/reedchan7/ls-json",
"bugs": {
"url": "https://github.com/reedchan7/ls-json/issues"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^24.5.2",
"prettier": "^3.6.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}