-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.08 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
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
{
"name": "path-ts",
"version": "2.3.0",
"description": "Isomorphic type-safe path utilities.",
"keywords": [
"path",
"type-safe",
"typescript",
"utilities"
],
"homepage": "https://github.com/sister-software/path-ts",
"bugs": {
"url": "https://github.com/sister-software/path-ts/issues"
},
"license": "MIT",
"contributors": [
{
"name": "Teffen Ellis",
"email": "teffen@sister.software"
}
],
"repository": {
"type": "git",
"url": "https://github.com/sister-software/path-ts.git"
},
"files": [
"out/index.d.ts",
"out/index.d.ts.map",
"out/index.js.map",
"out/index.js",
"out/lib/**/*"
],
"type": "module",
"exports": {
".": "./out/index.js",
"./basename": "./out/lib/basename.js",
"./dirname": "./out/lib/dirname.js",
"./extname": "./out/lib/extname.js",
"./format": "./out/lib/format.js",
"./is-absolute": "./out/lib/is-absolute.js",
"./join": "./out/lib/join.js",
"./normalize": "./out/lib/normalize.js",
"./package.json": "./package.json",
"./parse": "./out/lib/parse.js",
"./path-builder": "./out/lib/path-builder.js",
"./relative": "./out/lib/relative.js",
"./resolve": "./out/lib/resolve.js",
"./sep": "./out/lib/sep.js",
"./type-utils": "./out/lib/type-utils.js"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"check-types": "tsc --build .",
"clean": "tsc -b --clean",
"compile": "NODE_OPTIONS=\"--max-old-space-size=3000\" tsc -b",
"lint": "run-s lint:oxlint lint:oxfmt",
"lint:oxlint": "oxlint",
"lint:oxfmt": "oxfmt --check .",
"lint:fix": "run-s fix:oxlint format",
"fix:oxlint": "oxlint --fix",
"format": "oxfmt .",
"test": "vitest"
},
"devDependencies": {
"@sister.software/oxfmt-config": "^9.1.0",
"@sister.software/oxlint-config": "^9.1.0",
"@sister.software/tsconfig": "^9.0.0",
"@types/node": "^25.9.0",
"npm-run-all": "^4.1.5",
"oxfmt": "0.56.0",
"oxlint": "1.71.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@4.5.1",
"release-it": {
"npm": {
"publish": true
}
}
}