-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.34 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.34 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
54
55
56
57
58
{
"name": "quickbase.ts",
"version": "1.2.3",
"description": "A small, lightweight, strongly typed wrapper around axios built for quickbase.",
"scripts": {
"build": "tsup",
"format": "prettier --write .",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lil-Strudel/quickbase.ts.git"
},
"keywords": [
"quickbase"
],
"author": "Lil-Strudel",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lil-Strudel/quickbase.ts/issues"
},
"homepage": "https://github.com/Lil-Strudel/quickbase.ts#readme",
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/node": "^22.3.0",
"@vitest/coverage-istanbul": "^2.0.5",
"dotenv": "^16.4.5",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0",
"vitest": "^2.0.5"
},
"dependencies": {
"axios": "^1.7.4"
},
"overrides": {
"eslint": "^9.9.0"
}
}