-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.37 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.37 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@ran/monorepo",
"version": "1.0.0",
"description": "Monorepo",
"type": "module",
"engines": {
"node": ">=23.10.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": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@typescript-eslint/parser": "^8.46.4",
"eslint": "^9.39.1",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-regexp": "^2.10.0",
"jscpd": "^4.0.5",
"prettier": "^3.6.2",
"terser": "^5.44.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^6.4.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.9",
"vue": "^3.5.24",
"vue-tsc": "^3.1.3"
},
"dependencies": {
"globals": "^16.5.0",
"ranui": "0.1.10-alpha-27"
},
"pnpm": {
"ignoredBuiltDependencies": [
"fsevents",
"keccak",
"secp256k1"
]
}
}