-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
54 lines (54 loc) · 1.11 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
{
"name": "@yeger/scripts",
"type": "module",
"version": "1.0.11",
"author": {
"name": "Jan Müller",
"url": "https://github.com/DerYeger"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DerYeger/yeger.git",
"directory": "packages/scripts"
},
"bugs": {
"url": "https://github.com/DerYeger/yeger/issues"
},
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"types": "dist/types/index.d.mts",
"bin": {
"generate-readme": "bin/generate-readme.js"
},
"files": [
"bin/*",
"dist/*"
],
"scripts": {
"build": "vite build",
"check:publish": "publint run --strict",
"check:tsc": "tsc",
"dev": "vite build --watch",
"lint": "yeger-lint"
},
"dependencies": {
"@manypkg/get-packages": "2.2.2"
},
"devDependencies": {
"@yeger/tsconfig": "workspace:*",
"typescript": "5.7.3",
"vite": "6.1.0",
"vite-plugin-lib": "workspace:*"
},
"publishConfig": {
"access": "public"
}
}