-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1023 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1023 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
{
"name": "@theoutsiderslab/trust-nodejs-sdk",
"version": "1.1.1",
"author": "Guillaume DA SILVA",
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"main": "./dist/trust-nodejs-sdk.umd.cjs",
"module": "./dist/trust-nodejs-sdk.js",
"exports": {
".": {
"import": "./dist/trust-nodejs-sdk.js",
"require": "./dist/trust-nodejs-sdk.umd.cjs"
}
},
"types": "./dist/lib/index.d.ts",
"scripts": {
"serve": "tsc && vite build && vite",
"build": "tsc && vite build && tsc -P tsconfig.dts.json",
"lint": "eslint ./**/* --ext .ts"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"typescript": "^4.6.4",
"vite": "^3.2.3"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"volta": {
"node": "18.12.1",
"npm": "9.1.2"
},
"dependencies": {
"@theoutsiderslab/starton-nodejs-sdk": "^1.1.1",
"ofetch": "^1.0.0"
}
}