-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 993 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 993 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
41
42
43
{
"name": "@pilgrimagesoftware/dtrpg-sdk",
"version": "0.3.0",
"description": "SDK for the DriveThruRPG API",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pilgrimagesoftware/dtrpg-sdk.js.git"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"msw": "^2.15.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vitest": "^4.1.10"
}
}