-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 809 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 809 Bytes
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
{
"name": "urncode40",
"version": "1.0.2",
"description": "JavaScript library to encode and decode URN Code 40",
"license": "MIT",
"repository": "lukaslerche/urncode40js",
"author": {
"name": "Lukas Lerche",
"email": "lukas.lerche@tu-dortmund.de",
"url": "https://lukaslerche.de"
},
"type": "module",
"exports": {
"types": "./distribution/index.d.ts",
"default": "./distribution/index.js"
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"release": "np --no-tests",
"build": "del-cli distribution && tsc"
},
"files": [
"distribution"
],
"keywords": [
"urncode40",
"encode",
"decode"
],
"devDependencies": {
"@sindresorhus/tsconfig": "^8.0.1",
"@types/node": "^24.2.1",
"del-cli": "^6.0.0",
"np": "^10.2.0",
"typescript": "^5.9.2"
}
}