-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathpackage.json
135 lines (135 loc) · 3.1 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@cspell/cspell-pipe",
"publishConfig": {
"access": "public",
"provenance": true
},
"version": "8.15.0",
"description": "Library to make working with Iterators/AsyncIterators easier.",
"keywords": [
"cspell",
"pipe",
"Iterator",
"Iterable",
"AsyncIterator",
"AsyncIterable"
],
"author": "Jason Dent <jason@streetsidesoftware.nl>",
"homepage": "https://github.com/streetsidesoftware/cspell/tree/main/packages/cspell-pipe#readme",
"license": "MIT",
"type": "module",
"sideEffects": false,
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"directories": {
"dist": "dist"
},
"exports": {
".": {
"import": "./dist/index.js"
},
"./index": {
"import": "./dist/index.js"
},
"./index.js": {
"import": "./dist/index.js"
},
"./operators": {
"import": "./dist/operators/index.js"
},
"./operators/index.js": {
"import": "./dist/operators/index.js"
},
"./async": {
"import": "./dist/async/index.js"
},
"./async/index": {
"import": "./dist/async/index.js"
},
"./async/index.js": {
"import": "./dist/async/index.js"
},
"./sync": {
"import": "./dist/sync/index.js"
},
"./sync/index": {
"import": "./dist/sync/index.js"
},
"./sync/index.js": {
"import": "./dist/sync/index.js"
}
},
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"index.js": [
"dist/index.d.ts"
],
"index.d.ts": [
"dist/index.d.ts"
],
"operators": [
"dist/operators/index.d.ts"
],
"operators/*.js": [
"dist/operators/*.d.ts"
],
"operators/index.d.ts": [
"dist/operators/index.d.ts"
],
"sync": [
"dist/sync/index.d.ts"
],
"sync/index.js": [
"dist/sync/index.d.ts"
],
"sync/index.d.ts": [
"dist/sync/index.d.ts"
],
"dist/index.d.ts": [
"dist/index.d.ts"
],
"*": [
"dist/*.d.ts",
"dist/*/index.d.ts"
]
}
},
"files": [
"dist",
"!**/*.tsbuildInfo",
"!**/__mocks__",
"!**/*.spec.*",
"!**/*.perf.*",
"!**/*.test.*",
"!**/perf/**",
"!**/test/**",
"!**/*.map"
],
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
"clean-build": "pnpm run clean && pnpm run build",
"coverage": "vitest run --coverage",
"test-watch": "vitest",
"test": "vitest run",
"test:perf": "NODE_ENV=production insight --file \"**/*.perf.{mjs,js}\"",
"test:perf:ts": "NODE_ENV=production NODE_OPTIONS=--import=@swc-node/register/esm-register insight --file \"**/*.perf.{mts,ts}\""
},
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/cspell.git",
"directory": "packages/cspell-pipe"
},
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell/labels/cspell-pipe"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"globby": "^14.0.2",
"perf-insight": "^1.2.0"
}
}