-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
69 lines (69 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "nanobundle",
"version": "2.1.0",
"type": "module",
"license": "MIT",
"bin": "./bin.min.mjs",
"repository": {
"type": "git",
"url": "git+https://github.com/cometkim/espub.git",
"directory": "packages/nanobundle"
},
"bugs": {
"url": "https://github.com/cometkim/espub"
},
"author": {
"name": "Hyeseong Kim",
"email": "[email protected]"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prepack": "yarn build",
"build": "node build.mjs",
"build:self": "node bin.min.mjs build --platform=node",
"type-check": "tsc --noEmit --skipLibCheck",
"test": "vitest"
},
"files": [
"bin.mjs"
],
"engines": {
"node": ">=18.0.0",
"deno": ">=1.9.0"
},
"resolutions": {
"vite": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"dependencies": {
"@cometjs/core": "^2.1.0",
"browserslist": "^4.22.2",
"esbuild": "^0.21.4",
"kleur": "^4.1.5",
"meow": "^12.0.0",
"pretty-bytes": "^6.0.0",
"semver": "^7.3.8",
"string-dedent": "^3.0.1",
"tsconfck": "^3.0.0",
"xstate": "^4.35.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/semver": "^7.3.13",
"@vitest/coverage-v8": "^1.0.0",
"@xstate/cli": "^0.5.0",
"pkg-types": "^1.0.1",
"typescript": "^5.0.0",
"vitest": "^1.6.0"
},
"packageManager": "[email protected]"
}