-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1000 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
38
39
40
41
42
43
44
45
{
"name": "api-data-compressor",
"version": "1.1.10",
"description": "API Data Compressor",
"keywords": [
"api",
"json",
"compressor"
],
"main": "dist/index.js",
"types": "types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.esm.js"
}
},
"scripts": {
"dev": "tsx dev",
"build": "npm run clean && ./build.js && tsc --emitDeclarationOnly",
"clean": "rm -rf types && rm -rf dist",
"test": "jest"
},
"author": "Bun Wong <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.5.14",
"esbuild": "^0.24.0",
"esbuild-node-externals": "^1.15.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"files": [
"dist",
"types"
],
"repository": {
"type": "git",
"url": "https://github.com/hdwong/api-data-compressor.git"
}
}