-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.46 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
{
"name": "jslibs",
"version": "1.0.0",
"description": "A collection of libraries a maintain for my personal web stack.",
"license": "MIT",
"author": {
"name": "spuxx",
"email": "hi@spuxx.dev",
"url": "https://spuxx.dev"
},
"keywords": [
"spuxx"
],
"repository": {
"type": "git",
"url": "https://github.com/spuxx1701/jslibs"
},
"homepage": "https://github.com/spuxx1701/jslibs/blob/main/README.md",
"bugs": {
"url": "https://github.com/spuxx1701/jslibs/issues"
},
"packageManager": "pnpm@9.6.0",
"private": "true",
"scripts": {
"publish:test": "pnpm -r publish --dry-run --no-git-checks",
"test": "pnpm run test:unit",
"test:unit": "vitest run --coverage",
"check": "pnpm types && pnpm run lint && pnpm run prettier-check",
"types": "tsc --noEmit",
"lint": "eslint . --ext ts,tsx",
"prettier-check": "prettier --check .",
"format": "prettier --write ."
},
"devDependencies": {
"@modyfi/vite-plugin-yaml": "1.1.0",
"@types/node": "22.1.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitest/coverage-v8": "2.0.5",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"prettier": "3.3.3",
"release-please": "^16.12.0",
"typescript": "5.5.4",
"vite": "5.3.5",
"vite-plugin-dts": "3.9.1",
"vite-tsconfig-paths": "4.3.2",
"vitest": "2.0.5"
},
"dependencies": {}
}