-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.4 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
{
"name": "@kikiutils/classes",
"version": "4.0.3",
"description": "A utility library providing various classes for advanced operations and manipulations.",
"author": "kiki-kanri",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kiki-kanri/kikiutils-node-classes.git"
},
"keywords": [
"arithmetic",
"decimal",
"file system",
"fs",
"fs-extra",
"math",
"number",
"path",
"precision",
"utility",
"utils"
],
"exports": {
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.mjs",
"require": "./dist/*.cjs"
}
},
"files": [
"./dist",
"./src"
],
"engines": {
"node": ">=18.12.1"
},
"scripts": {
"build": "ts-project-builder './src/**/*.ts' --clean --sourcemaps",
"bumplog": "changelogen --bump",
"lint": "eslint",
"lint:fix": "eslint --fix",
"release": "pnpm run lint && pnpm run build && changelogen --push --release && npm publish"
},
"devDependencies": {
"@kikiutils/changelogen": "^0.7.0",
"@kikiutils/eslint-config": "^0.7.3",
"@kikiutils/fs-extra": "^2.3.11",
"@kikiutils/tsconfigs": "^3.0.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.5",
"@types/ssh2": "^1.15.3",
"consola": "^3.3.3",
"decimal.js": "^10.4.3",
"node-ssh": "^13.2.0",
"ts-project-builder": "^3.4.0",
"tslib": "^2.8.1"
}
}