-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.22 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": "intersphinx",
"version": "1.1.0",
"license": "MIT",
"description": "Read and write intersphinx objects.inv files",
"author": "Rowan Cockett <rowan@continuousfoundation.org>",
"homepage": "https://github.com/continuous-foundation/intersphinx",
"sideEffects": false,
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"Sphinx",
"Intersphinx",
"Documentation",
"Python"
],
"repository": {
"type": "git",
"url": "git+https://github.com/continuous-foundation/intersphinx.git"
},
"bin": "./dist/intersphinx.cjs",
"scripts": {
"copy:version": "echo \"const version = '\"$npm_package_version\"';\nexport default version;\" > src/version.ts",
"clean": "rm -rf dist",
"unlink": "bun unlink",
"link": "bun link",
"dev": "bun run link && esbuild src/cli/index.ts --bundle --outfile=dist/intersphinx.cjs --platform=node --watch",
"test": "bun test",
"test:watch": "bun test --watch",
"lint": "eslint \"src/**/*.ts*\"",
"lint:format": "prettier --check \"src/**/*.{ts,tsx,md}\"",
"build:esm": "tsc --project ./tsconfig.json --outDir dist --declaration",
"build:cli": "esbuild src/cli/index.ts --bundle --outfile=dist/intersphinx.cjs --platform=node",
"build": "bun run clean && bun run copy:version && bun run build:esm && bun run build:cli",
"changeset": "changeset",
"version": "changeset version && bun install",
"release": "bun run build && changeset publish",
"publish": "bun run build && bun test && changeset publish && git push --follow-tags"
},
"bugs": {
"url": "https://github.com/continuous-foundation/intersphinx/issues"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^15.0.0",
"js-yaml": "^5.2.1",
"myst-cli-utils": "^2.0.14",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"@types/bun": "^1.3.13",
"@types/node": "^26.1.0",
"esbuild": "^0.28.1",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "latest",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1"
}
}