-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.54 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
64
65
66
67
68
69
70
71
{
"name": "smartbundle",
"private": true,
"version": "0.14.0",
"description": "zero-config bundler for npm packages",
"bin": "./src/run.ts",
"type": "module",
"scripts": {
"test": "vitest src",
"test:update-snapshots": "pnpm test -- -u",
"test:e2e": "vitest e2e",
"test:e2e-update-snapshots": "pnpm test:e2e -- -u"
},
"keywords": [
"smartbundle",
"bundler",
"npm",
"package",
"typescript",
"esm",
"cjs"
],
"author": {
"name": "Andrey Vassilyev",
"email": "xavescor@xavescor.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/xavescor/smartbundle"
},
"homepage": "https://github.com/xavescor/smartbundle",
"bugs": {
"url": "https://github.com/xavescor/smartbundle/issues"
},
"license": "MIT",
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/node": "^22.10.7",
"@types/semver": "^7.5.8",
"@types/yargs": "^17.0.33",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"vitest": "^3.0.2",
"vitest-directory-snapshot": "^0.4.0",
"zx": "^8.3.0"
},
"dependencies": {
"semver": "^7.6.3",
"vite": "^6.0.7",
"yargs": "^17.7.2",
"youch": "4.1.0-beta.5",
"zod": "^3.24.1"
},
"peerDependencies": {
"@babel/core": "^7.26.0",
"typescript": "^5.0.0",
"vitest": "^3.0.0"
},
"peerDependenciesMeta": {
"@babel/core": {
"optional": true
},
"typescript": {
"optional": true
},
"vitest": {
"optional": true
}
},
"exports": "./src/index.ts"
}