-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.39 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
{
"name": "@sunny-117/cherry",
"type": "module",
"version": "0.0.3",
"packageManager": "[email protected]",
"description": "Lightweight JavaScript Bundler",
"license": "MIT",
"homepage": "https://github.com/Sunny-117/cherry#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Sunny-117/cherry.git"
},
"bugs": {
"url": "https://github.com/Sunny-117/cherry/issues"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"cherry": "bin/cherry"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"acorn": "^8.8.0",
"cac": "^6.7.12",
"chokidar": "^3.5.3",
"magic-string": "^0.26.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.0.0",
"@types/node": "^20.10.7",
"bumpp": "^9.2.1",
"eslint": "^8.56.0",
"fast-glob": "^3.3.2",
"prettier": "^3.1.1",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}