-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.97 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@kwooshung/files",
"version": "1.0.9",
"title": "files",
"description": "A convenient and efficient library for file operations.",
"private": false,
"tags": [
"kwooshung",
"files",
"files.js",
"suanfa"
],
"keywords": [
"kwooshung",
"files",
"files.js",
"suanfa"
],
"author": "kwooshung",
"homepage": "https://github.com/kwooshung/Files",
"repository": {
"type": "git",
"url": "https://github.com/kwooshung/Files.git"
},
"bugs": {
"url": "https://github.com/kwooshung/Files/issues"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"dev": "tsup --watch",
"build": "tsup --minify",
"test": "jest --coverage --verbose",
"test:watch": "jest --coverage --verbose --watch",
"test:ci": "jest --coverage --ci",
"eslint": "eslint . --fix --cache --quiet --report-unused-disable-directives --max-warnings 0 --ext .js,.cjs,.jsx,.ts,.cts,.tsx"
},
"dependencies": {
"filehound": "^1.17.6"
},
"peerDependencies": {
"node": ">=16.14.0"
},
"devDependencies": {
"@kwooshung/cvlar": "^1.3.7",
"@swc/core": "^1.4.1",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"commitlint": "^18.6.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"swc-loader": "^0.2.6",
"terser": "^5.27.1",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"license": "MIT"
}