-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.79 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.79 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
{
"name": "file-collection",
"version": "6.6.1",
"license": "MIT",
"description": "Library to manage large amount of files coming from different sources",
"keywords": [],
"author": "Luc Patiny",
"type": "module",
"exports": {
".": "./lib/index.js"
},
"browser": {
"./lib/append/appendPath.js": "./lib/append/appendPath.browser.js"
},
"files": [
"src",
"lib"
],
"scripts": {
"build": "npm run tsc && cheminfo-build --entry lib/index.js --root FileCollection",
"check-types": "tsc --noEmit",
"clean": "rimraf lib",
"eslint": "eslint .",
"eslint-fix": "eslint . --fix",
"prepack": "npm run tsc",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"test": "npm run test-only && npm run eslint && npm run prettier && npm run check-types",
"test-only": "vitest --run --coverage",
"tsc": "npm run clean && npm run tsc-build",
"tsc-build": "tsc --project tsconfig.build.json"
},
"dependencies": {
"@zip.js/zip.js": "^2.8.15",
"cheminfo-types": "^1.10.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.28.6",
"@babel/preset-typescript": "^7.28.5",
"@types/node": "^24.8.0",
"@vitest/coverage-v8": "^4.0.17",
"@zakodium/tsconfig": "^1.0.2",
"cheminfo-build": "^1.3.2",
"eslint": "^9.39.2",
"eslint-config-cheminfo-typescript": "^21.1.0",
"fifo-logger": "^2.0.1",
"msw": "^2.12.7",
"prettier": "^3.8.1",
"rimraf": "^6.1.2",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/file-collection.git"
},
"bugs": {
"url": "https://github.com/cheminfo/file-collection/issues"
},
"homepage": "https://github.com/cheminfo/file-collection#readme"
}