-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.28 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.28 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@devmc12/dir-tree",
"version": "1.0.1",
"description": "Headless directory tree reader, parser, renderer, and annotation toolkit.",
"type": "module",
"license": "MIT",
"author": "devmc12",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devmc12/dir-tree.git"
},
"bugs": {
"url": "https://github.com/devmc12/dir-tree/issues"
},
"homepage": "https://dir-tree.com",
"keywords": [
"directory-tree",
"file-tree",
"ascii-tree",
"headless",
"tree-parser"
],
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./adapters": {
"types": "./dist/adapters/index.d.ts",
"import": "./dist/adapters/index.js",
"require": "./dist/adapters/index.cjs"
},
"./annotations": {
"types": "./dist/annotations/index.d.ts",
"import": "./dist/annotations/index.js",
"require": "./dist/annotations/index.cjs"
},
"./ascii": {
"types": "./dist/ascii/index.d.ts",
"import": "./dist/ascii/index.js",
"require": "./dist/ascii/index.cjs"
},
"./browser": {
"types": "./dist/browser/index.d.ts",
"import": "./dist/browser/index.js",
"require": "./dist/browser/index.cjs"
},
"./node": {
"types": "./dist/node/index.d.ts",
"import": "./dist/node/index.js",
"require": "./dist/node/index.cjs"
},
"./parser": {
"types": "./dist/parser/index.d.ts",
"import": "./dist/parser/index.js",
"require": "./dist/parser/index.cjs"
},
"./selection": {
"types": "./dist/selection/index.d.ts",
"import": "./dist/selection/index.js",
"require": "./dist/selection/index.cjs"
},
"./transfer": {
"types": "./dist/transfer/index.d.ts",
"import": "./dist/transfer/index.js",
"require": "./dist/transfer/index.cjs"
},
"./tree": {
"types": "./dist/tree/index.d.ts",
"import": "./dist/tree/index.js",
"require": "./dist/tree/index.cjs"
}
},
"files": [
"dist",
"README.md",
"README.zh.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest run",
"format": "prettier --write .",
"smoke:exports": "node scripts/smoke-exports.mjs",
"smoke:install": "node scripts/smoke-installed-package.mjs",
"pack:dry": "npm pack --dry-run --cache .npm-cache",
"pack:verify": "node scripts/verify-pack-boundary.mjs",
"dev:playground": "npm --prefix playground run dev",
"build:playground": "npm --prefix playground run build",
"start:playground-node": "npm --prefix playground-node run start",
"typecheck:playground-node": "npm --prefix playground-node run typecheck"
},
"dependencies": {
"fflate": "^0.8.2"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^20.19.25",
"eslint": "^9.39.1",
"prettier": "^3.8.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0",
"vitest": "^4.0.15"
},
"engines": {
"node": ">=18.18"
}
}