-
-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.3 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
{
"name": "@internal/server-pattern-matcher",
"private": true,
"description": "Pattern Matcher Server",
"version": "2.0.0",
"author": "Jason Dent",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/vscode-spell-checker"
},
"type": "module",
"main": "dist/main.cjs",
"typings": "dist/main.d.cts",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.cjs"
},
"./api": {
"import": "./dist/api.js",
"require": "./dist/api.cjs"
}
},
"devDependencies": {
"@cspell/cspell-types": "^10.0.1",
"@internal/common-utils": "file:../__utils",
"regexp-worker": "^4.3.0",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-uri": "^3.1.0"
},
"scripts": {
"build": "tsdown && npm run build:tsc",
"build-production": "npm run clean-build-production",
"build:production": "tsdown --production --minify",
"build:tsc": "tsc -p tsconfig.test.json",
"clean-build-production": "npm run clean && npm run build:production",
"clean-build": "npm run clean && npm run build",
"clean": "shx rm -rf dist temp out coverage",
"test-watch": "vitest",
"test": "vitest run"
},
"engines": {
"node": ">=22.20.0"
}
}