-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.25 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "smartbundle",
"version": "0.17.0",
"private": true,
"description": "zero-config bundler for npm packages",
"keywords": [
"bundler",
"cjs",
"esm",
"npm",
"package",
"smartbundle",
"typescript"
],
"homepage": "https://github.com/xavescor/smartbundle",
"bugs": {
"url": "https://github.com/xavescor/smartbundle/issues"
},
"license": "MIT",
"author": {
"name": "Andrey Vassilyev",
"email": "xavescor@xavescor.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/xavescor/smartbundle"
},
"bin": "./src/run.ts",
"files": [
"skills/**/*.md"
],
"type": "module",
"exports": "./src/index.ts",
"scripts": {
"build": "bun src/run.ts build",
"test": "vitest src",
"test:coverage": "vitest run src --coverage",
"test:vitest-compat": "node scripts/test-vitest-compat.js",
"test:update-snapshots": "pnpm test -- -u",
"test:e2e": "vitest e2e",
"test:e2e-update-snapshots": "pnpm test:e2e -- -u",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint",
"lint:check": "oxlint"
},
"dependencies": {
"glob": "^13.0.6",
"semver": "^7.8.5",
"vite": "^8.1.4",
"yargs": "^18.1.0",
"youch": "4.1.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/node": "^20.19.43",
"@types/semver": "^7.7.1",
"@types/yargs": "17.0.35",
"@typescript/typescript6": "^6.0.2",
"@vitest/coverage-v8": "^4.1.10",
"oxfmt": "^0.60.0",
"oxlint": "^1.75.0",
"typescript": "7.0.2",
"vitest": "^4.1.10",
"vitest-directory-snapshot": "^0.7.1",
"zx": "^8.8.5"
},
"peerDependencies": {
"@babel/core": "^7.26.0 || ^8.0.0",
"@typescript/typescript6": "^6.0.2",
"typescript": ">=5.0.0 <8.0.0",
"vitest": "^3.0.0 || ^4.0.0"
},
"peerDependenciesMeta": {
"@babel/core": {
"optional": true
},
"@typescript/typescript6": {
"optional": true
},
"typescript": {
"optional": true
},
"vitest": {
"optional": true
}
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "^11.5.2",
"onFail": "download"
}
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
}
}