-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.12 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.12 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
{
"name": "cspell-action",
"version": "8.4.0",
"description": "GitHub Action: Check Spelling",
"private": true,
"packageManager": "[email protected]+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be",
"type": "module",
"scripts": {
"prepare": "pnpm run build",
"build": "pnpm build:src && pnpm build:action",
"build:action": "cd action && npm i",
"build:src": "pnpm -r run build",
"clean": "pnpm clean:action && pnpm clean:src",
"clean:src": "pnpm -r --filter ./action-src clean",
"clean:action": "shx rm -rf action/node_modules action/package-lock.json",
"clean-build": "pnpm -r --filter ./action-src clean-build",
"lint": "eslint . --fix && prettier . -w",
"smoke-test-push": "env-cmd -f ./fixtures/push.json node ./action/lib/main_root.js",
"smoke-test": "env-cmd -f ./fixtures/pull_request.json node ./action/lib/main_root.js",
"test": "pnpm -r --filter ./action-src test",
"test-with-auth": "GITHUB_TOKEN=$(gh auth token) pnpm test",
"coverage": "pnpm -r --filter ./action-src coverage",
"update-packages": "pnpm up -r -w"
},
"repository": "git+https://github.com/streetsidesoftware/cspell-action.git",
"keywords": [
"GitHub",
"cspell",
"Action",
"cspell",
"spell",
"spelling",
"checker"
],
"author": "Jason Dent <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell-action/issues"
},
"homepage": "https://github.com/streetsidesoftware/cspell-action#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tsconfig/node24": "^24.0.4",
"@vitest/coverage-istanbul": "^4.1.3",
"env-cmd": "^11.0.0",
"eslint": "^10.2.0",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"prettier": "^3.8.1",
"shx": "^0.4.0",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vitest": "^4.1.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"engines": {
"node": ">=24"
}
}