-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1020 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
28
29
30
31
32
33
34
35
36
{
"name": "insight-formatter",
"version": "0.0.0",
"description": "Make [insert language] diagnostic info prettier and human-readable.",
"main": "index.ts",
"author": "iSplasher",
"license": "MIT",
"private": true,
"workspaces": [
"core/*",
"core/components/*",
"plugins/*",
"languages/*",
"config/*"
],
"scripts": {
"run:cpp": "cd /cpp && bun",
"add:cpp": "cd /cpp && bun add",
"remove:cpp": "cd /cpp && bun remove",
"run:formatter": "cd core/formatter && bun",
"add:formatter": "cd core/formatter && bun add",
"remove:formatter": "cd core/formatter && bun remove",
"run:docs": "cd core/docs && bun",
"add:docs": "cd core/docs && bun add",
"remove:docs": "cd core/docs && bun remove",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"gen": "plop"
},
"devDependencies": {
"@crutchcorn/plop": "^4.1.0-alpha.1",
"@types/node": "^18.12.1",
"eslint": "^8.48.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}