forked from tamasfe/taplo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1017 Bytes
/
package.json
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
{
"name": "@taplo/cli",
"version": "0.6.0",
"description": "A TOML utility tool.",
"bin": {
"taplo": "dist/cli.js"
},
"scripts": {
"build": "yarn rollup --silent -c rollup.config.js && node util/add_shebang.js",
"prepublish": "RELEASE=true yarn build"
},
"homepage": "https://taplo.tamasfe.dev",
"repository": "https://github.com/tamasfe/taplo",
"author": {
"name": "tamasfe",
"url": "https://github.com/tamasfe"
},
"license": "MIT",
"autoTag": {
"enabled": true
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@taplo/core": "^0.1.0",
"@types/node": "^17.0.41",
"@types/node-fetch": "^2.6.1",
"@wasm-tool/rollup-plugin-rust": "^2.2.2",
"esbuild": "^0.14.45",
"fast-glob": "^3.2.11",
"node-fetch": "^3.2.6",
"rollup": "^2.75.6",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-typescript2": "^0.32.1",
"tslib": "^2.4.0",
"typescript": "^4.7.3"
}
}