-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.49 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
57
58
{
"name": "@stashbase/node-sdk",
"version": "0.6.0",
"description": "Stashbase Node SDK",
"repository": {
"type": "git",
"url": "git+https://github.com/stashbase/node-sdk.git"
},
"homepage": "https://github.com/stashbase/node-sdk#readme",
"bugs": {
"url": "https://github.com/stashbase/node-sdk/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE.txt"
],
"scripts": {
"lint": "eslint src tests scripts --ext .ts,.mjs",
"test": "vitest --config vitest.config.ts --run",
"test:integration": "node scripts/run-integration-tests.mjs",
"coverage": "vitest --config vitest.config.ts run --coverage",
"build": "tsup --config tsup.config.ts",
"release:check": "npm run lint && npm test && npm run build",
"prepack": "npm run build",
"version": "npm run release:check"
},
"keywords": [],
"author": "Stashbase",
"license": "MIT",
"devDependencies": {
"@types/node": "^25.9.3",
"@typescript-eslint/eslint-plugin": "8.61.0",
"@typescript-eslint/parser": "8.61.0",
"dotenv": "17.4.2",
"eslint": "10.6.0",
"tsup": "8.5.1",
"typescript": "6.0.3",
"vitest": "4.1.9"
},
"dependencies": {}
}