-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.49 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.49 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
57
58
59
{
"name": "micro",
"version": "1.0.0",
"description": "",
"keywords": ["evacuate"],
"homepage": "https://github.com/evacuate/micro#readme",
"bugs": {
"url": "https://github.com/evacuate/micro/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/evacuate/micro.git"
},
"license": "MIT",
"author": "evacuate",
"type": "module",
"main": "index.js",
"scripts": {
"build": "node scripts/rm.mjs && node scripts/build.mjs",
"check": "biome check",
"check:write": "biome check --write",
"dev": "tsx src/index.ts",
"format": "biome format",
"format:write": "biome format --write",
"lint": "biome lint",
"preinstall": "npx -y only-allow pnpm",
"prepare": "husky",
"sort": "node scripts/sort.mjs",
"start": "node dist/index.cjs",
"test": "vitest",
"test:watch": "vitest --watch",
"typecheck": "tsc --noEmit"
},
"lint-staged": {
"*.{js,mjs,ts,mts}": "biome format --write"
},
"dependencies": {
"ws": "^8.18.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@types/node": "^22.13.4",
"@types/ws": "^8.5.14",
"dotenv": "^16.4.7",
"esbuild": "^0.25.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.6"
},
"packageManager": "pnpm@10.4.0",
"engines": {
"node": "20.18.x"
}
}