-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.42 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.42 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
{
"name": "hidden-hell",
"version": "0.0.5",
"type": "module",
"module": "dist/index.ts",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"files": [
"dist",
"package.json"
],
"bin": {
"hide": "dist/index.cli.cjs",
"hidden-hell": "dist/index.cli.cjs"
},
"scripts": {
"build": "tsup-node --dts",
"--DEV--": "",
"dev": "npm run build -- --watch",
"dev:types": "tsc --watch",
"--TEST--": "",
"test": "vitest",
"test:types": "tsc --noEmit",
"--DEPLOY--": "",
"deploy": "bash scripts/deploy.sh",
"deploy:patch": "bash scripts/deploy.patch.sh"
},
"tsup": {
"entry": [
"src/index.ts",
"src/index.cli.ts"
],
"splitting": false,
"sourcemap": true,
"clean": true,
"format": [
"esm",
"cjs"
]
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/minimist": "^1.2.5",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.0.0",
"vitest": "^3.0.2"
},
"dependencies": {
"fast-glob": "*",
"fs-extra": "*",
"json5": "^2.2.3",
"minimist": "^1.2.8"
}
}