This repository was archived by the owner on Sep 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.07 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.07 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "colorix",
"version": "2.0.2",
"description": "🖌️ Colorize strings with LITERAL ANSI encodings!",
"author": "cuppachino <cuppachino.dev@gmail.com>",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Cuppachino/colorix.git"
},
"homepage": "https://github.com/Cuppachino/colorix#readme",
"bugs": {
"url": "https://github.com/Cuppachino/colorix/issues"
},
"keywords": [
"ansi",
"color",
"colors",
"console",
"terminal",
"pretty"
],
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs",
"browser": "./dist/esm/index.js",
"default": "./dist/cjs/index.cjs"
},
"files": [
"dist"
],
"packageManager": "pnpm@7.25.0",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "nodemon --watch src --exec ts-node-esm ./src/index.mts",
"build:swc": "ts-node ./src/index.mts",
"build:tsc": "pnpm clean && pnpm build",
"build": "pnpm clean && tsc --project tsconfig.json && tsc --project tsconfig.cjs.json && node ./scripts/os.js",
"clean": "rimraf ./dist",
"format": "prettier -w \"src/**/*.{ts,cts,mts,json,md}\"",
"start": "node ./dist/index.mjs",
"test": "echo \"Warn: no test specified\" && exit 0",
"save": "changeset",
"version-package": "changeset version && pnpm format",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/node": "^18.15.7",
"prettier": "^2.8.7",
"regenerator-runtime": "^0.13.11",
"remark": "^14.0.2",
"remark-lint-emphasis-marker": "^3.1.1",
"remark-lint-strong-marker": "^3.1.1",
"rimraf": "^4.4.1",
"tslib": "^2.4.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@cuppachino/type-space": "^1.16.0",
"@type-challenges/utils": "^0.1.1",
"strip-ansi": "^7.0.1",
"supports-color": "^9.3.1"
}
}