generated from homebots/typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.54 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
{
"name": "@homebots/espresso-compiler",
"version": "0.0.0",
"description": "Compiler for Espresso language used by Homebots VM",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"bin": {
"espc": "./cli/espc.mjs"
},
"type": "module",
"scripts": {
"test": "jest",
"ci": "npm ci && npm run build && npm run lint && npm run test",
"build": "rm -rf dist/ && npm run grammar && npm run types && npm run package && npm run cli",
"grammar": "sh update-grammar.sh",
"types": "tsc --declaration -p tsconfig.build.json",
"package": "ncc build src/index.mts --minify --no-cache --target es2022",
"cli": "ncc build dist/cli.mjs -o cli --minify --no-cache --target es2022 && cat cli-header.txt cli/index.mjs > cli/espc.mjs && rm cli/index.mjs",
"lint": "npx eslint 'src/**/*.mts'",
"tdd": "jest --watchAll"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/homebots/espresso-compiler.git"
},
"keywords": [
"homebots"
],
"author": "Darlan Alves <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/homebots/espresso-compiler/issues"
},
"homepage": "https://github.com/homebots/espresso-compiler#readme",
"devDependencies": {
"@types/jest": "^29.5.2",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"jest": "^29.5.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.0",
"ts-node": "^10.0.0",
"ts-pegjs": "^4.2.1",
"typescript": "^5.3.3",
"typescript-eslint": "^7.0.2"
}
}