-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.07 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.07 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": "nbff-parser",
"version": "0.9.2",
"description": "A simple parser for the Netscape Bookmark file format",
"keywords": [
"bookmarks",
"parser",
"browser",
"netscape",
"cli"
],
"scripts": {
"test:js": "node --test test/**/*.spec.js",
"test:lint": "eslint .",
"test:size": "size-limit",
"test:types": "tsc --noEmit test/**/*.types.ts",
"test": "pnpm run /^test:/"
},
"author": "Michael Tsulaya <metsulaya@gmail.com>",
"sideEffects": false,
"type": "module",
"types": "index.d.ts",
"bin": {
"nbff-parser": "./cli/index.js"
},
"engines": {
"node": "^23.4.0",
"pnpm": "^10.12.0"
},
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/immitsu/nbff-parser"
},
"license": "MIT",
"devDependencies": {
"@size-limit/preset-small-lib": "^11.2.0",
"eslint": "^9.39.1",
"eslint-plugin-perfectionist": "^4.15.1",
"prettier": "^3.6.2",
"size-limit": "^11.2.0",
"typescript": "^5.9.3"
}
}