forked from napi-rs/napi-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 2.67 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@napi-rs/cli",
"version": "3.7.3",
"description": "Cli tools for napi-rs",
"author": "LongYinan <lynweklm@gmail.com>",
"homepage": "https://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",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src",
"!__tests__"
],
"keywords": [
"cli",
"rust",
"napi",
"n-api",
"node-api",
"node-addon",
"neon"
],
"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": {
"@inquirer/prompts": "^8.5.2",
"@napi-rs/cross-toolchain": "^1.0.3",
"@napi-rs/wasm-tools": "^1.0.1",
"@octokit/rest": "^22.0.1",
"clipanion": "^4.0.0-rc.4",
"colorette": "^2.0.20",
"emnapi": "^1.11.1",
"es-toolkit": "^1.47.0",
"js-yaml": "^4.2.0",
"obug": "^2.1.2",
"semver": "^7.8.2",
"typanion": "^3.14.0"
},
"devDependencies": {
"@emnapi/runtime": "^1.11.0",
"@oxc-node/core": "^0.1.0",
"@std/toml": "npm:@jsr/std__toml@^1.0.11",
"@types/inquirer": "^9.0.9",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.9.2",
"@types/semver": "^7.7.1",
"ava": "^8.0.1",
"empathic": "^2.0.1",
"env-paths": "^4.0.0",
"oxc-parser": "^0.140.0",
"prettier": "^3.8.3",
"tsdown": "^0.22.2",
"tslib": "^2.8.1",
"typescript": "^6.0.3"
},
"peerDependencies": {
"@emnapi/runtime": "^1.7.1"
},
"peerDependenciesMeta": {
"@emnapi/runtime": {
"optional": true
}
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Brooooooklyn"
},
"scripts": {
"codegen": "node --import @oxc-node/core/register ./codegen/index.ts",
"build": "tsdown",
"test": "node --import @oxc-node/core/register ../node_modules/ava/entrypoints/cli.js"
},
"ava": {
"extensions": [
"ts"
],
"timeout": "5m",
"workerThreads": false,
"files": [
"**/__tests__/**/*.spec.ts",
"e2e/**/*.spec.ts"
]
}
}