-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 828 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 828 Bytes
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
{
"name": "jianjia",
"version": "0.0.0",
"private": true,
"packageManager": "yarn@4.9.2",
"description": "A simple, fast, lightweight, and extensible template engine for Node.js and browsers.",
"license": "MIT",
"workspaces": [
"benchmark",
"playground",
"packages/*"
],
"scripts": {
"dev": "yarn workspace template run dev",
"build": "yarn workspace template run build",
"test": "yarn workspace template run test",
"repl": "yarn workspace playground run start",
"perf": "yarn workspace benchmark run start",
"lint": "oxlint && eslint . --ext .ts",
"prepare": "husky"
},
"devDependencies": {
"@antfu/eslint-config": "^4.16.1",
"@types/node": "^24.0.3",
"eslint": "^9.32.0",
"husky": "^9.1.7",
"oxlint": "^1.3.0",
"typescript": "^5.8.3"
}
}