-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.42 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.42 KB
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
53
54
55
56
{
"name": "node-pdu",
"version": "2.1.2",
"description": "Creates and parses SMS PDU strings",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
}
},
"repository": "https://github.com/JulianWowra/node-pdu.git",
"homepage": "https://github.com/JulianWowra/node-pdu",
"license": "MIT",
"author": "jackkum <[email protected]>",
"contributors": [
"Julian Wowra <[email protected]>"
],
"packageManager": "[email protected]",
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"prettier": "3.8.1",
"tsup": "^8.5.1",
"typedoc": "~0.28.17",
"typedoc-github-theme": "~0.4.0",
"typescript": "~5.9.3",
"typescript-eslint": "8.56.0",
"vitest": "^4.0.18"
},
"scripts": {
"build": "pnpm build:lib && pnpm build:docs",
"build:lib": "tsup",
"build:docs": "typedoc src --plugin typedoc-github-theme",
"dev": "tsup --watch",
"lint": "pnpm lint:format && pnpm lint:code && pnpm lint:tests",
"lint:format": "prettier --check .",
"lint:code": "eslint src",
"lint:tests": "eslint tests",
"test": "vitest run --dir ./tests/",
"test:watch": "vitest watch --dir ./tests/"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"keywords": [
"pdu",
"sms"
]
}