-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 loc) · 1.55 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@tursodatabase/api",
"description": "The Turso API gives you everything needed to manage your organization and it's members, groups, databases, and API tokens.",
"version": "0.0.0-development",
"license": "MIT",
"repository": "tursodatabase/turso-api-client-ts",
"keywords": [
"turso",
"tursodatabase",
"sqlite",
"api-client"
],
"contributors": [
"Jamie Barton <[email protected]>"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch --clean=false",
"test": "vitest",
"test:watch": "vitest watch",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@types/node": "^20.10.5",
"semantic-release": "23.0.0",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vitest": "^1.0.4"
},
"tsup": {
"entry": [
"src/index.ts"
],
"splitting": true,
"sourcemap": true,
"clean": true,
"dts": true,
"format": [
"esm",
"cjs"
],
"skipNodeModulesBundle": true,
"externals": [
"node_modules"
]
},
"dependencies": {
"whatwg-fetch": "^3.6.19"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": {
"node": "./dist/index.js",
"default": "./dist/index.js"
},
"require": {
"node": "./dist/index.cjs",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
}
}