1{
2 "name": "@lapo/asn1js",
3 "version": "2.1.0",
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 "int10.js",
28 "dom.js",
29 "defs.js",
30 "oids.js",
31 "rfcdef.js",
32 "dumpASN1.js"
33 ],
34 "scripts": {
35 "lint": "npx eslint asn1.js base64.js hex.js int10.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",
36 "lint-action": "npx @action-validator/cli .github/workflows/node.js.yml",
37 "build": "vite build",
38 "serve": "npx -p local-web-server ws",
39 "test": "node test",
40 "testdefs": "node testDefs"
41 },
42 "bin": {
43 "dumpASN1": "./dumpASN1.js"
44 },
45 "engines": {
46 "node": ">=14.6.0"
47 },
48 "packageManager": "pnpm@7.33.7",
49 "devDependencies": {
50 "@eslint/eslintrc": "^3.3.1",
51 "@eslint/js": "^9.32.0",
52 "@rollup/wasm-node": "^4.46.2",
53 "diff": "^8.0.2",
54 "eslint": "^9.32.0",
55 "globals": "^16.3.0",
56 "htmlparser2": "^9.1.0",
57 "vite": "^5.4.19",
58 "vite-plugin-dom": "^1.0.4",
59 "vite-plugin-singlefile": "^2.3.0"
60 },
61 "overrides": {
62 "rollup": "npm:@rollup/wasm-node"
63 },
64 "pnpm": {
65 "overrides": {
66 "rollup": "npm:@rollup/wasm-node"
67 }
68 }
69}