зеркало из https://github.com/microsoft/rnx-kit.git
72 строки
1.8 KiB
JSON
72 строки
1.8 KiB
JSON
{
|
|
"name": "@rnx-kit/tools-node",
|
|
"version": "3.0.0",
|
|
"description": "A collection of supplemental NodeJS functions and types",
|
|
"homepage": "https://github.com/microsoft/rnx-kit/tree/main/packages/tools-node#readme",
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Microsoft Open Source",
|
|
"email": "microsoftopensource@users.noreply.github.com"
|
|
},
|
|
"files": [
|
|
"lib/**/*.d.ts",
|
|
"lib/**/*.js",
|
|
"module.d.ts",
|
|
"module.js",
|
|
"package.d.ts",
|
|
"package.js",
|
|
"path.d.ts",
|
|
"path.js",
|
|
"src"
|
|
],
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"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"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"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",
|
|
"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": "^20.0.0",
|
|
"eslint": "^9.0.0",
|
|
"prettier": "^3.0.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.17"
|
|
}
|
|
}
|