2020-10-15 21:16:52 +09:00
|
|
|
{
|
|
|
|
"name": "@napi-rs/cli",
|
2023-12-27 00:18:50 +09:00
|
|
|
"version": "3.0.0-alpha.24",
|
2020-10-15 21:16:52 +09:00
|
|
|
"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",
|
2020-10-15 21:16:52 +09:00
|
|
|
"license": "MIT",
|
2023-04-06 12:04:53 +09:00
|
|
|
"type": "module",
|
|
|
|
"engines": {
|
|
|
|
"node": ">= 16"
|
|
|
|
},
|
2020-10-15 21:16:52 +09:00
|
|
|
"bin": {
|
2023-04-06 12:04:53 +09:00
|
|
|
"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"
|
|
|
|
}
|
2020-10-15 21:16:52 +09:00
|
|
|
},
|
2021-12-10 17:55:55 +09:00
|
|
|
"files": [
|
2023-04-06 12:04:53 +09:00
|
|
|
"dist",
|
|
|
|
"src"
|
|
|
|
],
|
|
|
|
"keywords": [
|
|
|
|
"cli",
|
|
|
|
"rust",
|
|
|
|
"napi",
|
|
|
|
"n-api",
|
|
|
|
"node-api",
|
|
|
|
"node-addon",
|
|
|
|
"neon"
|
2021-12-10 17:55:55 +09:00
|
|
|
],
|
2020-10-15 21:16:52 +09:00
|
|
|
"maintainers": [
|
|
|
|
{
|
|
|
|
"name": "LongYinan",
|
|
|
|
"email": "lynweklm@gmail.com",
|
|
|
|
"homepage": "https://github.com/Brooooooklyn"
|
2023-04-06 12:04:53 +09:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "forehalo",
|
|
|
|
"homepage": "https://github.com/forehalo"
|
2020-10-15 21:16:52 +09:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"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"
|
|
|
|
},
|
2023-04-06 12:04:53 +09:00
|
|
|
"dependencies": {
|
2023-12-16 16:08:11 +09:00
|
|
|
"@napi-rs/cross-toolchain": "^0.0.14",
|
2023-11-02 21:10:08 +09:00
|
|
|
"@octokit/rest": "^20.0.2",
|
2023-11-02 13:57:11 +09:00
|
|
|
"@tybys/wasm-util": "0.8.0",
|
2023-07-17 15:56:02 +09:00
|
|
|
"clipanion": "^3.2.1",
|
|
|
|
"colorette": "^2.0.20",
|
2022-04-01 13:10:56 +09:00
|
|
|
"debug": "^4.3.4",
|
2023-11-19 11:10:55 +09:00
|
|
|
"emnapi": "0.44.0",
|
2023-11-19 16:13:06 +09:00
|
|
|
"inquirer": "^9.2.12",
|
2021-09-02 00:21:11 +09:00
|
|
|
"js-yaml": "^4.1.0",
|
2023-04-06 12:04:53 +09:00
|
|
|
"lodash-es": "^4.17.21",
|
2023-11-02 13:57:11 +09:00
|
|
|
"toml": "^3.0.0",
|
2023-11-02 21:10:08 +09:00
|
|
|
"typanion": "^3.14.0"
|
2020-10-15 21:16:52 +09:00
|
|
|
},
|
2023-04-06 12:04:53 +09:00
|
|
|
"devDependencies": {
|
2023-11-18 01:12:28 +09:00
|
|
|
"@emnapi/core": "0.44.0",
|
2023-11-18 03:03:17 +09:00
|
|
|
"@emnapi/runtime": "0.44.0",
|
2023-11-19 16:13:06 +09:00
|
|
|
"@types/debug": "^4.1.12",
|
|
|
|
"@types/inquirer": "^9.0.7",
|
|
|
|
"@types/js-yaml": "^4.0.9",
|
2023-12-06 20:41:21 +09:00
|
|
|
"@types/lodash-es": "^4.17.12",
|
|
|
|
"ava": "^6.0.0",
|
2023-11-02 13:57:11 +09:00
|
|
|
"env-paths": "^3.0.0",
|
2023-12-06 20:41:21 +09:00
|
|
|
"esbuild": "^0.19.8",
|
2023-11-19 16:13:06 +09:00
|
|
|
"prettier": "^3.1.0",
|
2023-04-06 12:04:53 +09:00
|
|
|
"ts-node": "^10.9.1",
|
2023-11-02 21:10:08 +09:00
|
|
|
"tslib": "^2.6.2",
|
2023-12-06 20:41:21 +09:00
|
|
|
"typescript": "^5.3.2"
|
2023-04-06 12:04:53 +09:00
|
|
|
},
|
2023-11-02 13:57:11 +09:00
|
|
|
"peerDependencies": {
|
2023-11-18 03:03:17 +09:00
|
|
|
"@emnapi/runtime": "0.44.0",
|
2023-11-02 13:57:11 +09:00
|
|
|
"@tybys/wasm-util": "0.8.0",
|
2023-11-19 11:10:55 +09:00
|
|
|
"emnapi": "0.44.0"
|
2023-11-02 13:57:11 +09:00
|
|
|
},
|
|
|
|
"peerDependenciesMeta": {
|
|
|
|
"@emnapi/runtime": {
|
|
|
|
"optional": true
|
|
|
|
},
|
|
|
|
"@tybys/wasm-util": {
|
|
|
|
"optional": true
|
|
|
|
},
|
|
|
|
"emnapi": {
|
|
|
|
"optional": true
|
|
|
|
}
|
|
|
|
},
|
2020-10-15 21:16:52 +09:00
|
|
|
"funding": {
|
|
|
|
"type": "github",
|
|
|
|
"url": "https://github.com/sponsors/Brooooooklyn"
|
2023-04-06 12:04:53 +09:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"codegen": "node --loader ts-node/esm/transpile-only ./codegen/index.ts",
|
|
|
|
"build": "tsc && yarn build:cjs",
|
|
|
|
"build:cjs": "node ./esbuild.mjs",
|
2023-06-17 18:03:57 +09:00
|
|
|
"test": "node --loader ts-node/esm/transpile-only ../node_modules/ava/entrypoints/cli.mjs"
|
2023-09-20 17:18:01 +09:00
|
|
|
},
|
|
|
|
"ava": {
|
|
|
|
"extensions": {
|
|
|
|
"ts": "module"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"**/__tests__/**/*.spec.ts"
|
|
|
|
]
|
2020-10-15 21:16:52 +09:00
|
|
|
}
|
2020-12-23 23:46:48 +09:00
|
|
|
}
|