-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.19 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.19 KB
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
{
"name": "please-prototype",
"version": "0.0.0",
"type": "module",
"bin": {
"please": "please"
},
"//": "The ugly `bash -c` contortions in the scripts below are to work around <https://github.com/npm/cli/issues/8583>.",
"scripts": {
"0": "bash -c 'node ./dist/language/cli/0.js \"$@\"; echo' bash",
"1": "bash -c 'node ./dist/language/cli/1.js \"$@\"; echo' bash",
"2": "bash -c 'node ./dist/language/cli/2.js \"$@\"; echo' bash",
"build": "tsc --build tsconfig.app.json --force",
"build:tests": "tsc --project tsconfig.app.json --outDir dist-test --declarationDir dist && tsc --build tsconfig.test.json",
"clean": "rm -rf dist* *.tsbuildinfo",
"format": "prettier --write .",
"test": "npm run build:tests && node --test --no-experimental-strip-types",
"test-update-snapshots": "npm run build:tests && node --test --no-experimental-strip-types --test-update-snapshots"
},
"devDependencies": {
"@types/node": "^25.5.0",
"prettier": "^3.8.1",
"typescript": "^6.0.2"
},
"dependencies": {
"@matt.kantor/either": "^1.2.0",
"@matt.kantor/option": "^1.0.0",
"@matt.kantor/parsing": "^2.0.0"
},
"engines": {
"node": ">=22.18"
}
}