-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.93 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
72
{
"name": "console.mog",
"version": "0.0.53",
"description": "Looksmax your console 🤫🧏",
"repository": {
"type": "git",
"url": "https://github.com/Smoke3785/console.mog"
},
"homepage": "https://github.com/Smoke3785/console.mog#readme",
"license": "ISC",
"author": "Smoke3785",
"type": "module",
"main": "./esm/index.mjs",
"module": "./esm/index.mjs",
"types": "./esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./esm/index.d.ts",
"default": "./esm/index.mjs"
},
"require": {
"types": "./cjs/index.d.ts",
"default": "./cjs/index.cjs"
}
}
},
"files": [
"readme.md",
"cjs",
"esm"
],
"scripts": {
"build:cjs": "env NODE_ENV=production tsup && tsup",
"build:esm": "tsup",
"build": "tsup && env NODE_ENV=production tsup && tsup",
"disabled-postinstall": "./src/scripts/install-tmux.sh",
"dev": "env NODE_ENV=production tsup && tsup --watch",
"ts:dev": "env NODE_ENV=internal-dev && tsx --watch test",
"js:dev": "node test/prod.js",
"lint": "tsc",
"test": "rollup -c && node test/index.ts",
"test-": "node test/index.ts"
},
"dependencies": {
"@iliad.dev/ts-utils": "^0.0.24",
"@preact/signals-core": "^1.8.0",
"@types/cli-table": "^0.3.4",
"chalk": "^5.3.0",
"cli-table": "^0.3.11",
"deepmerge": "^4.3.1",
"memoize": "github:Smoke3785/memoize#installable3",
"patch-console": "^2.0.0",
"remeda": "^2.17.4",
"rimraf": "^6.0.1",
"uid": "^2.0.2",
"wrap-ansi": "^9.0.0"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@types/qs": "^6.9.15",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"nodemon": "^3.1.0",
"rollup": "^4.17.2",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"tiny-glob": "^0.2.9",
"ts-node": "^10.9.2",
"tsup": "^8.0.2"
}
}