-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1015 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": "@bg-dev/node-red-unstorage",
"version": "0.1.7",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "cd playground && npm run dev",
"build": "rimraf dist && tsup src/**/*.ts --format cjs,esm --dts",
"release": "npm run build && changelogen --release && npm publish && git push --follow-tags"
},
"keywords": [
"node-red",
"storage",
"unstorage"
],
"author": "Becem Gharbi",
"license": "MIT",
"devDependencies": {
"changelogen": "^0.5.3",
"rimraf": "^5.0.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"dependencies": {
"unstorage": "^1.6.0"
},
"repository": {
"url": "https://github.com/becem-gharbi/node-red-unstorage"
},
"publishConfig": {
"access": "public"
}
}