-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.98 KB
/
package.json
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
60
61
62
63
{
"name": "@reliverse/core",
"author": "reliverse",
"version": "0.1.0",
"type": "module",
"description": "@reliverse/core is a Reliverse Addon that provides a Reliverse's constants for developing apps within the Reliverse ecosystem, offering pre-configured variables to streamline the creation of consistent, high-quality apps.",
"scripts": {
"appts": "redrun knip lint format typecheck test build",
"build": "tsup",
"ci": "pnpm lint:eslint && pnpm typecheck && pnpm test && pnpm build",
"dev:eslint": "pnpm eslint --inspect-config",
"dev": "vitest",
"format:biome": "biome format --write .",
"format": "redrun format:biome",
"knip": "knip",
"latest": "pnpm update --latest",
"lint:biome": "biome lint --write .",
"lint:eslint": "eslint --cache --fix .",
"lint": "redrun lint:eslint lint:biome",
"pub": "pnpm publish --access public",
"pub:jsr": "pnpm dlx jsr publish",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"files": ["dist"],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"main": "dist/index.js",
"keywords": ["reliverse", "addons", "core"],
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@eslint/js": "^9.9.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.3.0",
"eslint": "^9.9.0",
"knip": "^5.27.2",
"redrun": "^11.0.5",
"terser": "^5.31.6",
"tsup": "^8.2.4",
"typescript": "5.6.1-rc",
"typescript-eslint": "^8.1.0",
"vitest": "^2.0.5"
},
"pnpm": {
"allowedDeprecatedVersions": {
"inflight": "*",
"glob": "*"
},
"peerDependencyRules": {
"allowedVersions": {
"eslint": "9"
}
}
},
"packageManager": "pnpm@9.9.0+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1"
}