napi-rs/cli/package.json

100 lines
2.2 KiB
JSON
Raw Normal View History

{
"name": "@napi-rs/cli",
"version": "3.0.0-alpha.3",
"description": "Cli tools for napi-rs",
"author": "LongYinan <lynweklm@gmail.com>",
2020-12-03 17:30:14 +09:00
"homepage": "https://github.com/napi-rs/napi-rs",
"license": "MIT",
"type": "module",
"engines": {
"node": ">= 16"
},
"bin": {
"napi": "./dist/cli.js",
"napi-raw": "./cli.mjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"require": {
"default": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"./package.json": {
"import": "./package.json",
"require": "./package.json"
}
},
2021-12-10 17:55:55 +09:00
"files": [
"dist",
"src"
],
"keywords": [
"cli",
"rust",
"napi",
"n-api",
"node-api",
"node-addon",
"neon"
2021-12-10 17:55:55 +09:00
],
"maintainers": [
{
"name": "LongYinan",
"email": "lynweklm@gmail.com",
"homepage": "https://github.com/Brooooooklyn"
},
{
"name": "forehalo",
"homepage": "https://github.com/forehalo"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/napi-rs/napi-rs.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"bugs": {
"url": "https://github.com/napi-rs/napi-rs/issues"
},
"dependencies": {
2023-07-17 15:56:02 +09:00
"@octokit/rest": "^20.0.1",
"clipanion": "^3.2.1",
"colorette": "^2.0.20",
2022-04-01 13:10:56 +09:00
"debug": "^4.3.4",
2023-07-17 15:56:02 +09:00
"inquirer": "^9.2.8",
2021-09-02 00:21:11 +09:00
"js-yaml": "^4.1.0",
"lodash-es": "^4.17.21",
2023-07-17 15:56:02 +09:00
"typanion": "^3.13.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/js-yaml": "^4.0.5",
2023-07-17 15:56:02 +09:00
"@types/lodash-es": "^4.17.8",
"ava": "^5.3.1",
"esbuild": "^0.18.13",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
2023-07-17 15:56:02 +09:00
"typescript": "^5.1.6"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Brooooooklyn"
},
"scripts": {
"codegen": "node --loader ts-node/esm/transpile-only ./codegen/index.ts",
"build": "tsc && yarn build:cjs",
"build:cjs": "node ./esbuild.mjs",
"test": "node --loader ts-node/esm/transpile-only ../node_modules/ava/entrypoints/cli.mjs"
}
2020-12-23 23:46:48 +09:00
}