-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.35 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.35 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
{
"name": "@deenruv/asset-server-plugin",
"version": "1.0.16",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"license": "MIT",
"scripts": {
"watch": "tsc -p ./tsconfig.build.json --watch",
"build": "rimraf lib && tsc -p ./tsconfig.build.json && node build.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest --run",
"e2e": "cross-env PACKAGE=asset-server-plugin vitest --config ../../e2e-common/vitest.config.mts --run",
"e2e:watch": "cross-env PACKAGE=asset-server-plugin vitest --config ../../e2e-common/vitest.config.mts"
},
"homepage": "https://deenruv.com/",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@deenruv/core": "^1.0.0"
},
"devDependencies": {
"@deenruv/core": "workspace:^",
"@deenruv/common": "workspace:^",
"@aws-sdk/client-s3": "^3.529.1",
"@aws-sdk/lib-storage": "^3.529.1",
"@aws-sdk/types": "^3.664.0",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/node-fetch": "^2.6.11",
"express": "^4.18.3",
"node-fetch": "^2.7.0",
"rimraf": "^5.0.5",
"typescript": "5.3.3"
},
"dependencies": {
"@aws-sdk/credential-provider-ini": "^3.664.0",
"@nestjs/common": "^10.3.10",
"file-type": "^19.0.0",
"fs-extra": "^11.2.0",
"sharp": "~0.33.2"
}
}