/ package.json
package.json
 1  {
 2    "name": "@lapo/asn1js",
 3    "version": "2.1.3",
 4    "description": "Generic ASN.1 parser/decoder that can decode any valid ASN.1 DER or BER structures.",
 5    "type": "module",
 6    "main": "asn1.js",
 7    "repository": {
 8      "type": "git",
 9      "url": "git+https://github.com/lapo-luchini/asn1js.git"
10    },
11    "keywords": [
12      "asn1",
13      "ber",
14      "der",
15      "pem"
16    ],
17    "author": "Lapo Luchini <lapo@lapo.it>",
18    "license": "ISC",
19    "bugs": {
20      "url": "https://github.com/lapo-luchini/asn1js/issues"
21    },
22    "homepage": "https://lapo.it/asn1js/",
23    "files": [
24      "asn1.js",
25      "base64.js",
26      "hex.js",
27      "dom.js",
28      "defs.js",
29      "oids.js",
30      "rfcdef.js",
31      "dumpASN1.js"
32    ],
33    "scripts": {
34      "lint": "npx eslint asn1.js base64.js hex.js dom.js defs.js oids.js rfcdef.js tags.js context.js index.js parseRFC.js dumpASN1.js test.js testDefs.js vite.config.js theme.js",
35      "lint-action": "npx @action-validator/cli .github/workflows/node.js.yml",
36      "build": "vite build",
37      "serve": "npx -p local-web-server ws",
38      "test": "node test",
39      "testdefs": "node testDefs"
40    },
41    "bin": {
42      "dumpASN1": "./dumpASN1.js"
43    },
44    "engines": {
45      "node": ">=14.6.0"
46    },
47    "packageManager": "pnpm@7.33.7",
48    "devDependencies": {
49      "@eslint/eslintrc": "^3.3.4",
50      "@eslint/js": "^9.39.3",
51      "@rollup/wasm-node": "^4.59.0",
52      "diff": "^8.0.3",
53      "eslint": "^9.39.3",
54      "globals": "^16.5.0",
55      "htmlparser2": "^9.1.0",
56      "vite": "^7.3.1",
57      "vite-plugin-dom": "^1.0.5",
58      "vite-plugin-singlefile": "^2.3.0"
59    },
60    "overrides": {
61      "rollup": "npm:@rollup/wasm-node"
62    },
63    "pnpm": {
64      "overrides": {
65        "rollup": "npm:@rollup/wasm-node"
66      }
67    }
68  }