-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.06 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
38
39
{
"name": "janja.js",
"type": "module",
"version": "0.0.0",
"packageManager": "pnpm@11.0.9",
"description": "A simple, fast, lightweight, and extensible template engine for Node.js and browsers.",
"license": "MIT",
"scripts": {
"build": "pnpm --filter janja build",
"dev": "pnpm --filter janja dev",
"test": "pnpm --filter janja test",
"bench": "pnpm --filter janja bench",
"lint": "eslint .",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "~9.17.0",
"@types/node": "^25.6.2",
"eslint": "~10.3.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-janja": "workspace:*",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jiti": "^2.7.0",
"prettier": "^3.8.3",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2"
},
"pnpm": {
"overrides": {
"@eslint/core": "^1.0.0",
"@eslint/plugin-kit": "^0.5.0"
}
}
}