-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1007 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
39
40
41
{
"name": "jqf",
"version": "1.8.0",
"description": "Jqf is a CLI JSON processor with JavaScript function syntax",
"keywords": [
"json",
"processor",
"javascript",
"CLI"
],
"type": "module",
"main": "dist/index.js",
"bin": "dist/cli.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": "[email protected]:kamataryo/jqf.git",
"author": "kamataryo <[email protected]>",
"private": false,
"scripts": {
"build": "rm -rf dist && bun build ./src/index.ts ./src/cli.ts --outdir ./dist --target node && tsc --emitDeclarationOnly --project tsconfig.type-declaration.json",
"test": "bun test src/*.test.ts"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"devDependencies": {
"@types/bun": "^1.0.8",
"@types/node": "16"
},
"dependencies": {
"@kamataryo/outdent": "^2.0.1",
"commander": "^12.0.0",
"picocolors": "^1.0.0",
"safe-eval": "^0.4.1"
}
}