-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "psbots",
"version": "0.0.1",
"description": "A project about a PostScript based programming language for robots",
"scripts": {
"update": "ncu --deep -i --format group",
"check": "eslint ./tools/*.mjs --fix && npm run check --workspaces",
"test": "npm run test --workspaces",
"build": "npm run build --workspaces",
"cli": "node ./cli/index.js",
"cli:debug": "node ./cli/index.js --debug",
"wi": "npm run dev --workspace wi"
},
"engines": {
"node": ">=20.17.0"
},
"workspaces": [
"./engine",
"./repl",
"./cli",
"./wi"
],
"keywords": [
"postscript",
"robots",
"programming"
],
"author": "Arnaud Buchholz <arnaud.buchholz@free.fr>",
"license": "MIT",
"devDependencies": {
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"npm-check-updates": "^17.1.14",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
}
}