-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcursor.json
More file actions
62 lines (62 loc) · 1.69 KB
/
cursor.json
File metadata and controls
62 lines (62 loc) · 1.69 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
{
"ai": {
"defaultModel": "gpt-5.2",
"fallbackModel": "gemini-3.0-pro",
"allowedModels": [
"gpt-5.2",
"gemini-3.0-pro"
]
},
"project": {
"name": "@oresoftware/json-stream-parser",
"description": "Parse JSON streams into JS objects.",
"homepage": "https://github.com/ORESoftware/json-parser#readme",
"repository": {
"host": "github",
"owner": "ORESoftware",
"name": "json-parser",
"url": "https://github.com/ORESoftware/json-parser",
"issues": "https://github.com/ORESoftware/json-parser/issues"
}
},
"npm": {
"packageName": "@oresoftware/json-stream-parser",
"version": "0.0.124",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"bin": {
"json_parser": "cli/json-parser.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run build && node test/run.js"
}
},
"paths": {
"srcDir": "src",
"distDir": "dist",
"testDir": "test",
"readme": "readme.md",
"tsconfig": "tsconfig.json",
"entrypoints": {
"library": "src/main.ts",
"cli": "src/cli.ts"
},
"built": {
"library": "dist/main.js",
"cli": "dist/cli.js"
}
},
"links": {
"npm": "https://www.npmjs.com/package/@oresoftware/json-stream-parser",
"github": "https://github.com/ORESoftware/json-parser",
"issues": "https://github.com/ORESoftware/json-parser/issues",
"homepage": "https://github.com/ORESoftware/json-parser#readme"
},
"git": {
"remoteName": "origin",
"defaultBranch": "master",
"remoteUrlSsh": "git@github.com:ORESoftware/json-parser.git",
"remoteUrlHttps": "https://github.com/ORESoftware/json-parser.git"
}
}