-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 903 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 903 Bytes
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
{
"private": true,
"name": "@timkendrick/syntax-examples",
"version": "0.0.1",
"description": "Language syntax examples",
"author": "Tim Kendrick <timkendrick@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"codegen": "pnpm run syntax-codegen ./src/languages/*.grammar.ts",
"syntax-codegen": "node --experimental-transform-types ../syntax-codegen/bin/syntax-codegen",
"verify": "pnpm run lint && pnpm run test",
"lint": "eslint --ext js,jsx,cjs,mjs,ts,tsx,cts,mts .",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@timkendrick/syntax": "workspace:*"
},
"devDependencies": {
"@timkendrick/build-config": "workspace:*",
"@timkendrick/syntax-codegen": "workspace:*"
},
"peerDependencies": {
"eslint": "^8",
"prettier": "^3",
"typescript": "^5",
"vite": "^6",
"vitest": "^3"
}
}