-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.48 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.48 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
{
"name": "@scribelabsai/mi",
"version": "1.0.2",
"description": "SDK to access Scribe's MI API.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"exports": "./dist/index.js",
"sideEffects": false,
"scripts": {
"build:lib": "tsc",
"check": "tsc --noEmit",
"test": "npx vitest run --passWithNoTests --logHeapUsage",
"coverage": "npm run test -- --coverage",
"changelog": "git log --pretty=\"format:%s\" --decorate=no $(git describe --tags --abbrev=0 @^)..@ > Changelog.md"
},
"author": "Alex Bostock <alex@scribelabs.ai>",
"license": "MIT License",
"repository": {
"url": "https://github.com/ScribeLabsAI/ScribeMINode"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/crypto-js": "3.1.47",
"@types/node": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@vitest/coverage-v8": "^3.2.4",
"dotenv": "^16.3.1",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-sonarjs": "^3.0.5",
"eslint-plugin-unicorn": "^61.0.2",
"eslint-plugin-vitest": "^0.5.4",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"dependencies": {
"@scribelabsai/auth": "^1.3.0",
"crypto-js": "4.2.0",
"zod": "^3.22.2"
}
}