-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.42 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
52
{
"name": "@apeleghq/cose-algorithms",
"version": "20240911.0.0",
"description": "A mapping of IANA COSE Algorithm names to their values",
"type": "module",
"main": "./dist/coseAlgorithms.cjs",
"types": "./dist/coseAlgorithms.dts",
"module": "./dist/coseAlgorithms.js",
"exports": {
".": {
"import": {
"types": "./dist/coseAlgorithms.d.ts",
"default": "./dist/coseAlgorithms.js"
},
"require": {
"types": "./dist/coseAlgorithms.d.cts",
"default": "./dist/coseAlgorithms.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.1.3",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ApelegHQ/ts-cose-algorithms.git"
},
"files": [
"dist/**/*"
],
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --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": ["cose", "cose-algorithms", "rfc9053", "rfc9054"]
}