-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
26 lines (26 loc) · 846 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
{
"name": "vyaakaran",
"description": "Visualize formal languages and automata",
"author": "Akash Hamirwasia",
"license": "MIT",
"keywords": [],
"private": true,
"scripts": {
"compiler:dev": "cd compiler && pnpm run dev",
"compiler:build": "cd compiler && pnpm run build",
"editor:dev": "pnpm run compiler:dev & cd editor && pnpm run dev",
"editor:build": "pnpm run compiler:build && cd editor && pnpm run build",
"website:dev": "cd website && pnpm run dev",
"website:build": "cd website && pnpm run build",
"dev": "pnpm run editor:dev & pnpm run website:dev",
"build": "./build.sh"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.5.0",
"prettier": "^3.3.3",
"typescript": "^4.9.5",
"typescript-eslint": "8.0.0-alpha.30"
}
}