-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.69 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
{
"name": "unloader",
"version": "0.3.0",
"packageManager": "[email protected]",
"description": "Node.js loader with a Rollup-like interface.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/sxzz/unloader#readme",
"bugs": {
"url": "https://github.com/sxzz/unloader/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sxzz/unloader.git"
},
"author": "三咲智子 Kevin Deng <[email protected]>",
"funding": "https://github.com/sponsors/sxzz",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./register": "./dist/register.js",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"format": "prettier --cache --write .",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@ampproject/remapping": "^2.3.0",
"birpc": "^2.2.0",
"debug": "^4.4.0",
"unconfig": "^7.0.0"
},
"devDependencies": {
"@sxzz/eslint-config": "^5.0.1",
"@sxzz/prettier-config": "^2.1.1",
"@types/debug": "^4.1.12",
"@types/node": "^22.13.1",
"bumpp": "^10.0.2",
"eslint": "^9.19.0",
"oxc-transform": "^0.48.2",
"prettier": "^3.4.2",
"tsdown": "^0.5.7",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"engines": {
"node": "^18.19.0 || >=20.6.0"
},
"prettier": "@sxzz/prettier-config"
}