-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.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
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
82
83
84
85
86
87
88
89
90
{
"name": "path-ts",
"version": "1.0.5",
"description": "Isomorphic type-safe path utilities.",
"keywords": [
"path",
"typescript",
"type-safe",
"utilities"
],
"homepage": "https://github.com/sister-software/path-ts",
"bugs": {
"url": "https://github.com/sister-software/path-ts/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sister-software/path-ts.git"
},
"license": "AGPL-3.0-only",
"contributors": [
{
"name": "Teffen Ellis",
"email": "[email protected]"
}
],
"type": "module",
"exports": {
"./package.json": "./package.json",
".": "./out/index.js",
"./basename": "./out/lib/basename.js",
"./dirname": "./out/lib/dirname.js",
"./extname": "./out/lib/extname.js",
"./format": "./out/lib/format.js",
"./join": "./out/lib/join.js",
"./parse": "./out/lib/parse.js",
"./path-builder": "./out/lib/path-builder.js",
"./resolve": "./out/lib/resolve.js",
"./type-utils": "./out/lib/type-utils.js"
},
"files": [
"out/index.d.ts",
"out/index.d.ts.map",
"out/index.js.map",
"out/index.js",
"out/lib/**/*"
],
"scripts": {
"compile": "NODE_OPTIONS=\"--max-old-space-size=3000\" tsc -b",
"test": "vitest",
"lint": "run-s lint:prettier:check lint:eslint:check",
"lint:fix": "run-s lint:prettier:fix lint:eslint:fix",
"lint:prettier:check": "prettier --cache --check -u .",
"lint:prettier:fix": "prettier --cache --write -u .",
"lint:prettier": "eslint .",
"lint:eslint:check": "eslint .",
"lint:eslint:fix": "eslint --fix .",
"release": "release-it"
},
"prettier": "@sister.software/prettier-config",
"devDependencies": {
"@sister.software/eslint-config": "7.1.3",
"@sister.software/prettier-config": "7.1.3",
"@sister.software/tsconfig": "7.1.3",
"@types/node": "^22.8.1",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.3",
"release-it": "^17.10.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"vitest": "2.1.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 10.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"release-it": {
"npm": {
"publish": true
}
}
}