-
-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathpackage.json
36 lines (36 loc) · 964 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
{
"name": "@taplo/lib",
"version": "0.5.1",
"description": "A TOML linter and formatter and utility library.",
"types": "dist/index.d.ts",
"scripts": {
"build": "yarn rollup --silent -c rollup.config.mjs",
"prepublish": "RELEASE=true yarn build"
},
"homepage": "https://taplo.tamasfe.dev",
"main": "dist/index.js",
"repository": "https://github.com/tamasfe/taplo",
"author": {
"name": "tamasfe",
"url": "https://github.com/tamasfe"
},
"license": "MIT",
"autoTag": {
"enabled": true
},
"dependencies": {
"@taplo/core": "^0.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^20.11.9",
"@wasm-tool/rollup-plugin-rust": "^2.4.5",
"esbuild": "^0.20.0",
"rollup": "^4.9.6",
"rollup-plugin-esbuild": "^6.1.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}