-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 965 Bytes
/
package.json
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
{
"name": "tribufu",
"version": "0.1.29",
"description": "Tribufu JS SDK",
"repository": "https://github.com/Tribufu/TribufuJs",
"author": "Tribufu <[email protected]>",
"license": "MIT",
"type": "module",
"types": "./build/index.d.ts",
"exports": {
"import": "./build/index.mjs",
"require": "./build/index.cjs",
"types": "./build/index.d.ts"
},
"typesVersions": {
"*": {
"*": [
"./build/*"
]
}
},
"scripts": {
"clean": "rimraf build",
"build": "npm run clean && tsc && node scripts/esbuild.js"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^20.10.6",
"dotenv": "^16.3.1",
"esbuild": "^0.19.10",
"esbuild-node-externals": "^1.12.0",
"eslint": "9.11.1",
"prettier": "3.3.3",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
}
}