-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.91 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "gravlax",
"version": "0.13.1",
"description": "A Lox interpreter with tasty TypeScript seasoning",
"repository": {
"type": "git",
"url": "https://github.com/danvk/gravlax"
},
"license": "MIT",
"author": {
"name": "Dan Vanderkam",
"email": "danvdk@gmail.com"
},
"type": "module",
"main": "./lib/index.js",
"bin": "./index.js",
"files": [
"index.js",
"lib/",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"benchmark": "pnpm --silent run repl bench/fib33.lox",
"build": "tsup",
"byte-repl": "pnpm run:ts src/bytecode/index.ts",
"coverage": "pnpm test -- --coverage --no-watch",
"format": "prettier \"**/*\" --ignore-unknown",
"lint": "eslint . .*js --max-warnings 0",
"lint:knip": "knip",
"lint:md": "markdownlint \"**/*.md\" \".github/**/*.md\" --rules sentences-per-line",
"lint:package-json": "npmPkgJsonLint .",
"lint:packages": "pnpm dedupe --check",
"lint:spelling": "cspell \"**\" \".github/**/*\"",
"pre-push": "pnpm run '/^(tsc|lint(?!:packages).*)$/'",
"prepare": "husky install",
"repl": "pnpm run:ts src/index.ts",
"run:ts": "node --loader ts-node/esm --no-warnings",
"should-semantic-release": "should-semantic-release --verbose",
"test": "vitest",
"tsc": "tsc",
"update-baselines": "pnpm run:ts src/scripts/update-baselines.ts"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"sprintf-js": "^1.1.3"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"@types/eslint": "^8.56.1",
"@types/node": "^20.10.7",
"@types/sprintf-js": "^1.1.4",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"@vitest/coverage-v8": "^1.1.3",
"console-fail-test": "^0.2.3",
"cspell": "^8.3.2",
"eslint": "^8.57.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-jsonc": "^2.15.1",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-no-autofix": "^2.0.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-perfectionist": "^2.9.0",
"eslint-plugin-regexp": "^2.5.0",
"eslint-plugin-vitest": "^0.4.1",
"eslint-plugin-yml": "^1.14.0",
"husky": "^9.0.0",
"jsonc-eslint-parser": "^2.4.0",
"knip": "^5.0.0",
"lint-staged": "^15.2.0",
"markdownlint": "^0.34.0",
"markdownlint-cli": "^0.41.0",
"npm-package-json-lint": "^8.0.0",
"npm-package-json-lint-config-default": "^7.0.0",
"prettier": "^3.1.1",
"prettier-plugin-curly": "^0.2.0",
"prettier-plugin-packagejson": "^2.4.9",
"release-it": "^17.0.1",
"sentences-per-line": "^0.2.1",
"should-semantic-release": "^0.3.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.1.3",
"yaml-eslint-parser": "^1.2.2"
},
"packageManager": "pnpm@9.4.0",
"engines": {
"node": ">=20"
},
"publishConfig": {
"provenance": true
}
}