forked from chaxus/ran
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.15 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
40
41
42
43
44
45
{
"name": "@ran/monorepo",
"version": "1.0.0",
"description": "Monorepo",
"type": "module",
"engines": {
"node": "^16.20.2 || >=18.0.0"
},
"scripts": {
"pre": "sh ./bin/preinstall.sh",
"preinstall": "npx only-allow pnpm",
"clean": "sh ./bin/clean.sh",
"build": "sh ./bin/build.sh",
"test": "sh ./bin/test.sh",
"lint": "sh ./bin/lint.sh",
"lint:es": "eslint --cache .",
"lint:fix": "eslint --cache --fix",
"lint:prettier": "prettier --check --cache .",
"format": "prettier --write --cache .",
"cpd": "jscpd ./packages"
},
"homepage": "https://chaxus.github.io/ran/",
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/node": "^22.7.5",
"@typescript-eslint/parser": "^8.8.1",
"eslint": "^9.12.0",
"eslint-plugin-i": "^2.29.1",
"eslint-plugin-n": "^17.11.1",
"eslint-plugin-regexp": "^2.6.0",
"globals": "^15.11.0",
"jscpd": "^4.0.5",
"prettier": "^3.3.3",
"terser": "^5.34.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1"
},
"dependencies": {
"vite": "^5.4.8",
"vitest": "^1.6.0"
}
}