-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 724 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 724 Bytes
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
{
"name": "dprint-node",
"version": "1.0.8",
"description": "A node API for the dprint TypeScript and JavaScript code formatter",
"repository": "https://github.com/devongovett/dprint-node",
"author": "Devon Govett <devongovett@gmail.com>",
"license": "MIT",
"napi": {
"name": "dprint-node"
},
"files": [
"*.node",
"index.js",
"index.d.ts",
"options.d.ts"
],
"scripts": {
"build": "napi build --platform --dts false --js false",
"build-release": "napi build --platform --release --dts false --js false"
},
"dependencies": {
"detect-libc": "^1.0.3"
},
"devDependencies": {
"@napi-rs/cli": "^2.11.4",
"prettier": "^2.7.1",
"tiny-benchy": "^2.1.0"
}
}