-
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) · 1.02 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.02 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
{
"name": "diffio",
"version": "0.1.7",
"description": "Diffio API client for Node.js",
"repository": {
"type": "git",
"url": "https://github.com/Diffio-AI/diffio-js"
},
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build",
"version:registry": "node scripts/bump-version.mjs",
"publish:registry": "node scripts/publish.mjs",
"test": "jest --config jest.config.mjs",
"test:unit": "jest --selectProjects unit",
"test:wire": "jest --selectProjects wire"
},
"dependencies": {
"mime-types": "^2.1.35",
"svix": "^1.84.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/mime-types": "^2.1.4",
"@types/node": "^18.19.70",
"jest": "^29.7.0",
"msw": "^2.11.2",
"ts-jest": "^29.2.6",
"typescript": "~5.7.2"
},
"engines": {
"node": ">=18.0.0"
},
"sideEffects": false
}