-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.3 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.3 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
{
"name": "@rnx-kit/tools-filesystem",
"version": "0.1.2",
"description": "A collection of commonly used functions for manipulating the filesystem",
"homepage": "https://github.com/microsoft/rnx-kit/tree/main/packages/tools-filesystem#readme",
"license": "MIT",
"author": {
"name": "Microsoft Open Source",
"email": "microsoftopensource@users.noreply.github.com"
},
"files": [
"lib/**/*.d.ts",
"lib/**/*.js",
"src"
],
"exports": {
".": {
"types": "./lib/index.d.ts",
"typescript": "./src/index.ts",
"default": "./lib/index.js"
},
"./mocks": {
"types": "./lib/mocks.d.ts",
"typescript": "./src/mocks.ts",
"default": "./lib/mocks.js"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rnx-kit",
"directory": "packages/tools-filesystem"
},
"scripts": {
"build": "rnx-kit-scripts build",
"format": "rnx-kit-scripts format",
"lint": "rnx-kit-scripts lint",
"test": "rnx-kit-scripts test",
"update-readme": "rnx-kit-scripts update-api-readme"
},
"devDependencies": {
"@rnx-kit/eslint-config": "*",
"@rnx-kit/scripts": "*",
"@rnx-kit/tsconfig": "*",
"@types/node": "^24.0.0"
},
"engines": {
"node": ">=18.12"
}
}