-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.2 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.2 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
{
"name": "@vernesoft/node",
"version": "0.4.0",
"description": "Official Node.js and TypeScript SDK for the Verne Nautilus platform",
"license": "MIT",
"author": "Verne Software",
"homepage": "https://vernesoft.com",
"repository": {
"type": "git",
"url": "https://github.com/vernesoft/vrn-sdk-node"
},
"engines": {
"node": ">=18"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:single": "vitest run",
"lint": "eslint src",
"format": "prettier --write src",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"prettier": "^3.0.0",
"tsup": "^8.0.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.0.0",
"vitest": "^3.0.0"
}
}