-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 KB
/
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
42
43
44
45
46
47
{
"packageManager": "[email protected]",
"name": "args-tokenizer",
"version": "0.3.0",
"description": "Tokenize a shell string into argv array",
"type": "module",
"types": "./dist/args-tokenizer.d.ts",
"exports": {
".": {
"types": "./dist/args-tokenizer.d.ts",
"import": "./dist/args-tokenizer.js",
"default": "./dist/args-tokenizer.js"
},
"./package.json": "./package.json"
},
"files": [
"./dist"
],
"scripts": {
"build": "rm -rf dist && esbuild src/args-tokenizer.ts --outdir=dist --bundle --format=esm && tsc && rm dist/*.test.*",
"test": "vitest run"
},
"devDependencies": {
"@types/node": "^22.10.2",
"esbuild": "^0.24.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TrySound/args-tokenizer.git"
},
"keywords": [
"args",
"commands",
"shell",
"tokenizer",
"parser",
"tinyexec",
"child_process",
"spawn"
],
"author": "Bogdan Chadkin <[email protected]>",
"license": "MIT"
}