-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.71 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
{
"name": "azure-storage-provider-strapi",
"version": "0.2.3",
"description": "lib of upload files to blob storage private",
"main": "lib/main.js",
"source": "src/main.ts",
"types": "lib/types/*.d.ts",
"typesVersions": {
"*": {
"lib/*": [
"lib/types*"
]
}
},
"author": "Bruno Marques <blmarques.dev@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/blmarquess/azure-storage-provider-strapi.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"tag": "latest"
},
"homepage": "https://github.com/blmarquess/azure-storage-provider-strapi#readme",
"bugs": {
"url": "https://github.com/blmarquess/azure-storage-provider-strapi/issues"
},
"keywords": [
"upload",
"strapi",
"azure-storage",
"azure",
"blob"
],
"scripts": {
"clean": "rm -rf lib",
"preBuild": "npm run clean && npm run biome:apply",
"build": "npm run preBuild && tsc -p tsconfig.build.json",
"biome:apply": "biome check --apply ./src/*",
"format": "biome format ./src/* --write",
"lint": "biome lint ./src/*",
"prepublishOnly": "npm run build",
"test": "node --test --require ts-node/register ./src/**/*.spec.ts",
"test:watch": "node --test --watch --require ts-node/register ./src/**/*.spec.ts"
},
"directories": {
"lib": "./lib"
},
"files": [
"lib/**/*"
],
"strapi": {
"isProvider": true
},
"dependencies": {
"@azure/storage-blob": "^12.17.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@types/node": "^20.10.7",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}