-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.49 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.49 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
{
"name": "@pungrumpy/cursor-action",
"version": "0.1.0",
"description": "GitHub Action to install Cursor CLI and run cursor-agent in CI",
"keywords": [
"ai",
"cli",
"cursor",
"cursor-agent",
"github-action"
],
"bugs": {
"url": "https://github.com/PunGrumpy/cursor-action/issues"
},
"license": "MIT",
"author": "Noppakorn Kaewsalabnil <hello@pungrumpy.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/PunGrumpy/cursor-action.git"
},
"type": "module",
"main": "dist/index.js",
"module": "src/index.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "ncc build src/index.ts --license licenses.txt",
"test": "bun test",
"test:coverage": "bun test --coverage",
"typecheck": "tsc --noEmit",
"lint": "ultracite check",
"format": "ultracite fix",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "bun run build && changeset publish"
},
"dependencies": {
"@actions/cache": "^6.0.0",
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/http-client": "^4.0.0",
"@actions/io": "^3.0.2",
"@actions/tool-cache": "^4.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@types/bun": "latest",
"@vercel/ncc": "^0.38.4",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"ultracite": "7.3.2"
},
"peerDependencies": {
"typescript": "^5"
}
}