-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.32 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@filen/sdk",
"version": "0.4.2",
"description": "Filen SDK",
"main": "dist/node/index.js",
"browser": "dist/browser/index.js",
"types": "dist/types/index.d.ts",
"private": false,
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"dev": "node --import tsx --trace-warnings --trace-uncaught ./dev/index.ts",
"build": "npm run build:clean && npm run lint && npm run build:node && npm run build:browser",
"build:node": "tsc",
"build:browser": "tsc --p tsconfig.browser.json",
"build:clean": "rimraf ./dist && rimraf ./docs",
"build:publish": "npm run build && npm publish",
"lint": "eslint src/**/* --ext .js,.jsx,.ts,.tsx",
"emitTypes": "tsc --emitDeclarationOnly",
"bundle": "webpack --mode production --node-env production --config webpack.config.js",
"typedoc": "typedoc --plugin typedoc-plugin-missing-exports --out docs src/index.ts",
"yalc": "npm run build && yalc push",
"publish:latest": "npm run build && npm publish --access public --tag latest",
"publish:beta": "npm run build && npm publish --access public --tag beta"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FilenCloudDienste/filen-sdk-ts.git"
},
"keywords": [
"filen"
],
"engines": {
"node": ">=20"
},
"author": "Filen",
"license": "AGPLv3",
"bugs": {
"url": "https://github.com/FilenCloudDienste/filen-sdk-ts/issues"
},
"homepage": "https://sdk-ts-docs.filen.io",
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/fs-extra": "^11.0.4",
"@types/mime-types": "^2.1.4",
"@types/node-forge": "^1.3.11",
"@types/progress-stream": "^2.0.5",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"globals": "^16.0.0",
"rimraf": "^6.0.1",
"tsx": "^4.19.3",
"typedoc": "^0.27.9",
"typedoc-plugin-missing-exports": "^3.1.0",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
},
"dependencies": {
"@noble/hashes": "^1.7.1",
"agentkeepalive": "^4.6.0",
"axios": "^0.28.1",
"crypto-api-v1": "^1.0.0",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.7",
"eventemitter3": "^5.0.1",
"fs-extra": "^11.3.0",
"js-crypto-key-utils": "^1.0.7",
"js-xxhash": "^4.0.0",
"mime-types": "^2.1.35",
"node-forge": "^1.3.1",
"progress-stream": "^2.0.0",
"striptags": "^3.2.0",
"uuid": "^11.1.0"
}
}