stain 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +9 -0
- package/dist/_macro_.d.cts +9 -0
- package/dist/_macro_.d.mts +9 -0
- package/dist/_macro_.d.ts +9 -0
- package/dist/_macro_.d.ts.map +1 -0
- package/dist/constants.d.cts +55 -0
- package/dist/constants.d.mts +55 -0
- package/dist/constants.d.ts +55 -0
- package/dist/constants.d.ts.map +1 -0
- package/dist/index.cjs +344 -0
- package/dist/index.cjs.map +13 -0
- package/dist/index.d.cts +41 -0
- package/dist/index.d.mts +41 -0
- package/dist/index.d.ts +41 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +312 -0
- package/dist/index.js.map +13 -0
- package/dist/index.min.cjs +1 -0
- package/dist/index.min.js +1 -0
- package/dist/testBin/index.d.cts +13 -0
- package/dist/testBin/index.d.mts +13 -0
- package/dist/testBin/index.d.ts +13 -0
- package/dist/testBin/index.d.ts.map +1 -0
- package/dist/testBin/tmp.d.cts +13 -0
- package/dist/testBin/tmp.d.mts +13 -0
- package/dist/testBin/tmp.d.ts +13 -0
- package/dist/testBin/tmp.d.ts.map +1 -0
- package/package.json +75 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tmp.d.ts","sourceRoot":"","sources":["../../src/testBin/tmp.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;AAE/C;;;;;;GAMG;AACH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;AA8L3D,KAAK,eAAe,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,QAAQ,GAAG,KAAK,GAAG,OAAO,GAAG,QAAQ,CAAC;AACnG,MAAM,MAAM,WAAW,GAAG,eAAe,GAAG,IAAI,eAAe,EAAE,CAAC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "stain",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Fluent, flexible, and fast ANSI styling that adds color to your terminal",
|
|
5
|
+
"homepage": "https://github.com/fetchTe/stain",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"keywords": ["ansi", "colors", "4-bit", "8-bit", "NO_COLOR", "fluent-api", "dyslectic friendly"],
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"type": "module",
|
|
12
|
+
"main": "./dist/index.cjs",
|
|
13
|
+
"module": "./dist/index.js",
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "make release",
|
|
17
|
+
"test": "make test"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@eslint/js": "9.29.0",
|
|
22
|
+
"@stylistic/eslint-plugin": "4.4.1",
|
|
23
|
+
"@types/bun": "1.2.16",
|
|
24
|
+
"@types/eslint": "9.6.1",
|
|
25
|
+
"@types/node": "24.0.1",
|
|
26
|
+
"@typescript-eslint/parser": "8.34.0",
|
|
27
|
+
"cli-reap": "1.0.1",
|
|
28
|
+
"comment-directive": "1.2.1",
|
|
29
|
+
"eslint": "9.29.0",
|
|
30
|
+
"globables": "2.0.1",
|
|
31
|
+
"typescript": "5.8.3",
|
|
32
|
+
"typescript-eslint": "8.34.0"
|
|
33
|
+
},
|
|
34
|
+
"exports": {
|
|
35
|
+
".": {
|
|
36
|
+
"require": {
|
|
37
|
+
"types": "./dist/index.d.cts",
|
|
38
|
+
"default": "./dist/index.cjs"
|
|
39
|
+
},
|
|
40
|
+
"import": {
|
|
41
|
+
"types": "./dist/index.d.mts",
|
|
42
|
+
"default": "./dist/index.js"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"./index": {
|
|
46
|
+
"require": {
|
|
47
|
+
"types": "./dist/index.d.cts",
|
|
48
|
+
"default": "./dist/index.cjs"
|
|
49
|
+
},
|
|
50
|
+
"import": {
|
|
51
|
+
"types": "./dist/index.d.mts",
|
|
52
|
+
"default": "./dist/index.js"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"author": {
|
|
57
|
+
"email": "git@fetchte.com",
|
|
58
|
+
"name": "fetchTe",
|
|
59
|
+
"url": "https://github.com/fetchTe/stain"
|
|
60
|
+
},
|
|
61
|
+
"bugs": {
|
|
62
|
+
"email": "git@fetchte.com",
|
|
63
|
+
"url": "https://github.com/fetchTe/stain/issues"
|
|
64
|
+
},
|
|
65
|
+
"engines": {
|
|
66
|
+
"node": ">=14.15.0"
|
|
67
|
+
},
|
|
68
|
+
"publishConfig": {
|
|
69
|
+
"access": "public"
|
|
70
|
+
},
|
|
71
|
+
"repository": {
|
|
72
|
+
"type": "git",
|
|
73
|
+
"url": "git+https://github.com/fetchTe/stain.git"
|
|
74
|
+
}
|
|
75
|
+
}
|