-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1007 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1007 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
31
32
33
34
35
36
37
38
39
40
{
"name": "userscripts",
"version": "0.0.8",
"private": true,
"description": "A monorepo of UserScript I bring about.",
"homepage": "https://github.com/mogeko/userscripts",
"repository": "github:mogeko/userscripts",
"author": {
"name": "Zheng Junyi",
"email": "zhengjunyi@live.com"
},
"bugs": {
"url": "https://github.com/mogeko/userscripts/issues",
"email": "zhengjunyi@live.com"
},
"license": "MIT",
"scripts": {
"build": "turbo run build && bun run pkg",
"pkg": "bun ./scripts/pack.ts",
"test": "turbo run test",
"cov": "turbo run cov",
"lint": "biome check",
"fmt": "biome check --write",
"changeset": "changeset"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@types/bun": "^1.3.5",
"turbo": "^2.7.3"
},
"peerDependencies": {
"typescript": "^5"
},
"packageManager": "bun@1.3.5"
}