-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.03 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.03 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": "@skald-labs/skald-node",
"version": "0.5.2",
"description": "Node.js client library for the Skald API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:dev": "tsx src/test.ts"
},
"keywords": [
"skald",
"api",
"memo",
"client"
],
"author": "Skald Labs, Inc.",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.7.2",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"tsx": "^4.20.6",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skaldlabs/skald-node.git"
},
"bugs": {
"url": "https://github.com/skaldlabs/skald-node/issues"
},
"homepage": "https://github.com/skaldlabs/skald-node#readme",
"publishConfig": {
"access": "public"
}
}