2021-08-21 11:17:49 +03:00
|
|
|
{
|
|
|
|
"name": "@rnx-kit/tools-node",
|
2024-09-11 09:59:50 +03:00
|
|
|
"version": "3.0.0",
|
2021-08-21 11:17:49 +03:00
|
|
|
"description": "A collection of supplemental NodeJS functions and types",
|
|
|
|
"homepage": "https://github.com/microsoft/rnx-kit/tree/main/packages/tools-node#readme",
|
|
|
|
"license": "MIT",
|
2024-03-18 15:19:51 +03:00
|
|
|
"author": {
|
|
|
|
"name": "Microsoft Open Source",
|
|
|
|
"email": "microsoftopensource@users.noreply.github.com"
|
|
|
|
},
|
2021-08-21 11:17:49 +03:00
|
|
|
"files": [
|
2024-03-18 15:19:51 +03:00
|
|
|
"lib/**/*.d.ts",
|
|
|
|
"lib/**/*.js",
|
2021-08-21 11:17:49 +03:00
|
|
|
"module.d.ts",
|
2023-04-18 13:19:15 +03:00
|
|
|
"module.js",
|
2021-08-21 11:17:49 +03:00
|
|
|
"package.d.ts",
|
2023-04-18 13:19:15 +03:00
|
|
|
"package.js",
|
|
|
|
"path.d.ts",
|
2023-09-12 18:27:29 +03:00
|
|
|
"path.js",
|
2024-03-18 15:19:51 +03:00
|
|
|
"src"
|
2021-08-21 11:17:49 +03:00
|
|
|
],
|
|
|
|
"main": "lib/index.js",
|
2021-11-01 16:37:36 +03:00
|
|
|
"types": "lib/index.d.ts",
|
2023-09-12 18:27:29 +03:00
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"types": "./lib/index.d.ts",
|
|
|
|
"typescript": "./src/index.ts",
|
|
|
|
"default": "./lib/index.js"
|
|
|
|
},
|
|
|
|
"./module": {
|
|
|
|
"types": "./lib/module.d.ts",
|
|
|
|
"typescript": "./src/module.ts",
|
|
|
|
"default": "./lib/module.js"
|
|
|
|
},
|
|
|
|
"./package": {
|
|
|
|
"types": "./lib/package.d.ts",
|
|
|
|
"typescript": "./src/package.ts",
|
|
|
|
"default": "./lib/package.js"
|
|
|
|
},
|
|
|
|
"./path": {
|
|
|
|
"types": "./lib/path.d.ts",
|
|
|
|
"typescript": "./src/path.ts",
|
|
|
|
"default": "./lib/path.js"
|
2023-09-16 03:24:30 +03:00
|
|
|
},
|
|
|
|
"./package.json": "./package.json"
|
2023-09-12 18:27:29 +03:00
|
|
|
},
|
2021-08-21 11:17:49 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/microsoft/rnx-kit",
|
|
|
|
"directory": "packages/tools-node"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "rnx-kit-scripts build",
|
|
|
|
"format": "rnx-kit-scripts format",
|
|
|
|
"lint": "rnx-kit-scripts lint",
|
2021-08-31 09:53:08 +03:00
|
|
|
"test": "rnx-kit-scripts test",
|
|
|
|
"update-readme": "rnx-kit-scripts update-api-readme"
|
2021-08-21 11:17:49 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-11-03 16:02:18 +03:00
|
|
|
"@rnx-kit/eslint-config": "*",
|
2021-11-09 22:21:15 +03:00
|
|
|
"@rnx-kit/scripts": "*",
|
2023-12-18 14:05:07 +03:00
|
|
|
"@rnx-kit/tsconfig": "*",
|
2023-11-15 20:08:18 +03:00
|
|
|
"@types/node": "^20.0.0",
|
2024-10-17 17:41:52 +03:00
|
|
|
"eslint": "^9.0.0",
|
2023-07-11 12:58:39 +03:00
|
|
|
"prettier": "^3.0.0",
|
2023-03-20 12:26:35 +03:00
|
|
|
"typescript": "^5.0.0"
|
2024-09-10 21:02:14 +03:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=16.17"
|
2021-08-21 11:17:49 +03:00
|
|
|
}
|
|
|
|
}
|