-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.31 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
{
"name": "path-js",
"version": "1.6.1",
"private": true,
"description": "An utility suite that gathers several functions related to a specific file or directory path.",
"homepage": "https://github.com/ruggeryiury/path-js#readme",
"repository": "github:ruggeryiury/path-js",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Ruggery Iury Corrêa <[email protected]>",
"license": "MIT",
"keywords": [
"fs",
"fs-library",
"javascript",
"javascript-library",
"node",
"nodejs",
"nodejs-modules",
"path",
"typescript",
"typescript-library"
],
"scripts": {
"build": "pnpm run clear && tsc --project ./prod.tsconfig.json",
"clear": "rimraf dist",
"dev": "tsx watch ./tests/exec.ts",
"format": "prettier --write src",
"lint": "eslint src"
},
"exports": {
".": {
"import": "./dist/index.js"
}
},
"devDependencies": {
"@types/node": "^20.12.12",
"eslint": "^9.3.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.5",
"eslint-plugin-n": "^17.7.0",
"globals": "^15.3.0",
"prettier": "^3.2.5",
"tsx": "^4.10.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0"
}
}