-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.03 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.03 KB
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
{
"name": "airaga",
"version": "0.1.0",
"author": "Rafi Abiyyu Airlangga",
"description": "An opinionated text game written in TypeScript.",
"license": "MIT",
"private": true,
"type": "module",
"workspaces": ["packages/*"],
"devDependencies": {
"@eslint/js": "^9.32.0",
"@faker-js/faker": "^9.9.0",
"@types/bun": "latest",
"@types/node": "^25.0.8",
"dedent": "^1.6.0",
"eslint": "^9.32.0",
"globals": "^17.0.0",
"jiti": "^2.5.1",
"jsdom": "^26.1.0",
"knip": "^5.81.0",
"prettier": "^3.6.2",
"tsc-alias": "^1.8.16",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vite-tsconfig-paths": "^6.0.4",
"vitest": "^3.2.4"
},
"scripts": {
"build": "tsc --build && bun tsc-alias",
"knip": "knip",
"lint": "eslint . --fix --ext .js,.cjs,.mjs,.ts,.cts,.mts",
"prettier": "prettier --write .",
"test": "vitest run",
"tsc-alias": "tsc-alias -p packages/cli/tsconfig.json && tsc-alias -p packages/parser/tsconfig.json"
}
}