-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 866 Bytes
/
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
{
"name": "erml",
"version": "0.0.0",
"description": "",
"main": "src/erml/parser.ts",
"scripts": {
"start": "bun src/console.ts",
"build": "bun build src/erml/parser.ts --outdir dist --minify --target=node",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"typecheck": "tsc --noemit",
"format": "prettier --write .",
"precommit": "pnpm run format && pnpm run lint && pnpm run typecheck"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.9.0"
},
"dependencies": {
"esbuild": "^0.17.6",
"esbuild-node-tsc": "^2.0.2",
"typescript": "^5.0.4"
}
}