-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.74 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
48
49
50
51
52
53
54
55
{
"name": "@kelsny/synth",
"version": "0.0.1",
"description": "A tool for synthesizing types into runtime validators.",
"bin": {
"synth": "dist/bin.js"
},
"main": "dist/index.js",
"engines": {
"node": ">=16"
},
"scripts": {
"fmt": "yarn format",
"format": "prettier --write .",
"test": "mocha",
"test:watch": "mocha && chokidar \"**/*.ts\" -c \"mocha || exit 0\"",
"build": "tsc",
"build:watch": "tsc -w",
"ext:syntaxes": "tsc scripts/syntaxes.ts --moduleResolution node --module esnext --target esnext && (node scripts/syntaxes.js || rm scripts/syntaxes.js) && (rm scripts/syntaxes.js || exit 0)",
"meta:lc": "tsc scripts/linecount.ts --moduleResolution node --module esnext --target esnext && (node scripts/linecount.js || rm scripts/linecount.js) && (rm scripts/linecount.js || exit 0)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kelsny/synth.git"
},
"type": "module",
"keywords": [
"typescript",
"tooling",
"synth"
],
"author": "kelsny <cursors.owo.uwu@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kelsny/synth/issues"
},
"homepage": "https://github.com/kelsny/synth#readme",
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.35",
"chai": "^4.3.6",
"chokidar-cli": "^3.0.0",
"mocha": "^10.0.0",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"dependencies": {
"arg": "^5.0.2",
"chalk": "^5.0.1",
"leven": "^4.0.0",
"strip-ansi": "^7.0.1",
"unraw": "^2.0.1"
}
}