-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
37 lines (37 loc) · 961 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": "@replit/database",
"version": "3.0.1",
"engines": {
"node": ">=18"
},
"description": "Client for Repl.it Database",
"homepage": "https://docs.replit.com/hosting/databases/replit-database",
"repository": {
"type": "git",
"url": "https://github.com/replit/database-node.git"
},
"license": "MIT",
"scripts": {
"build": "rm -rf dist/ && tsup src/index.ts --platform node --format cjs,esm --dts --cjsInterop --splitting",
"prepublishOnly": "npm run build",
"test": "npm run build && cd test && npm install && cd ../ && vitest run test/*"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@types/node": "^18.11.18",
"tsup": "^7.2.0",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
}
}