-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.37 KB
/
package.json
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
{
"name": "@apeleghq/crypto-oids",
"version": "20240911.0.0",
"description": "Non-comprehensive export of OIDs used in various crypto standards",
"type": "module",
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"devDependencies": {
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "8.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ApelegHQ/ts-crypto-oids.git"
},
"files": [
"dist/**/*"
],
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.mjs,.mts,.cjs,.cts",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx,.mjs,.mts,.cjs,.cts --fix",
"build": "tsc --declarationMap --declaration",
"prepack": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run lint && git add -A src",
"postversion": "git push && git push --tags"
},
"author": "Apeleg Limited",
"license": "CC0-1.0",
"keywords": ["oid", "asn1", "cms", "x509", "X9.62"]
}