-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.39 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.39 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
{
"name": "lettermint",
"version": "1.5.1",
"description": "Official Lettermint Node.js SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean --minify --sourcemap",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format .",
"format:fix": "biome format --write .",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"type-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lettermint/lettermint-node.git"
},
"keywords": [
"Lettermint",
"Node",
"lettermint-node"
],
"author": "Bjarn Bronsveld",
"license": "MIT",
"bugs": {
"url": "https://github.com/lettermint/lettermint-node/issues"
},
"homepage": "https://github.com/lettermint/lettermint-node#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.2",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.21",
"jest": "^29.7.0",
"ts-jest": "^29.3.4",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
}
}