-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.old.json
More file actions
69 lines (69 loc) · 1.93 KB
/
Copy pathpackage.old.json
File metadata and controls
69 lines (69 loc) · 1.93 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
65
66
67
68
69
{
"name": "discourse2",
"version": "0.0.1",
"description": "complete Discourse API, fully typed",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"test:all": "yarn test && yarn tsc && yarn lint",
"lint": "eslint src",
"prettier": "prettier -w src",
"build": "cp src/schema.d.ts lib && tsc",
"prepublishOnly": "yarn build",
"coverage": "jest --coverage",
"ci": "yarn coverage && yarn tsc && yarn lint",
"schema:sync": "tsx src/schema-sync.ts",
"schema:fetch": "curl -o src/openapi.json https://docs.discourse.org/openapi.json",
"schema:ts": "yarn openapi-typescript src/openapi.json -o src/schema.d.ts",
"generate": "yarn tsx src/generate.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gadicc/discourse2.git"
},
"keywords": [
"discourse"
],
"author": "Gadi Cohen <dragon@wastelands.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gadicc/discourse2/issues"
},
"homepage": "https://github.com/gadicc/discourse2#readme",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@swc/core": "^1.7.26",
"@swc/jest": "^0.2.36",
"@types/debug": "^4.1.8",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"eslint": "^9.11.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-fetch-mock-cache": "^1.4.0",
"json-schema": "^0.4.0",
"json-schema-to-typescript": "^13.0.2",
"openapi-types": "^12.1.3",
"openapi-typescript": "^7.4.1",
"prettier": "^3.3.3",
"semantic-release": "^24.1.2",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"prettier": {},
"dependencies": {
"ajv": "8.12.0",
"ajv-errors": "3.0.0",
"debug": "^4.3.4"
},
"release": {
"branches": [
"main"
]
}
}