-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.69 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
{
"name": "arachnid-shield-sdk",
"version": "1.0.0-rc",
"description": "The Arachnid Shield SDK for NodeJS that offers scanning media for known CSAM and other harmful or abusive material for children.",
"main": "dist/index.js",
"readme": "./README.md",
"homepage": "https://github.com/CdnCentreForChildProtection/arachnid-shield-typescript-sdk",
"scripts": {
"test": "./node_modules/.bin/vitest -c vite.config.ts tests",
"compile": "./node_modules/.bin/tsc --emitDeclarationOnly --outDir dist",
"build": "./node_modules/.bin/esbuild src/index.ts --bundle --minify --platform=node --target=node16 --outdir=dist",
"prod": "NODE_ENV=production npm run build && NODE_ENV=production npm run compile",
"format": "./node_modules/.bin/prettier --write \"src/**/*.ts\"",
"lint": "./node_modules/.bin/tslint -p tsconfig.json"
},
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/CdnCentreForChildProtection/arachnid-shield-typescript-sdk"
},
"keywords": [
"arachnid-shield-sdk"
],
"author": "CdnCentreForChildProtection <[email protected]>",
"dependencies": {
"axios": "^1.5.0",
"mime": "^3.0.0"
},
"files": [
"dist/**/*",
"README.md"
],
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/mime": "^3.0.4",
"@types/mime-types": "^2.1.1",
"@vitest/coverage-v8": "^0.33.0",
"esbuild": "^0.19.3",
"jest": "^29.6.1",
"jest-fetch-mock": "*",
"jest-junit": "^16.0.0",
"msw": "^2.2.13",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
}
}