-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.23 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.23 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.0.2",
"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": "rimraf dist",
"unlink": "npm uninstall -g intersphinx;",
"link": "npm run unlink; npm link;",
"dev": "npm run link && esbuild src/cli/index.ts --bundle --outfile=dist/intersphinx.cjs --platform=node --watch",
"test": "vitest run",
"test:watch": "vitest watch",
"lint": "eslint \"src/**/*.ts*\" -c ./.eslintrc.cjs",
"lint:format": "prettier --check \"src/**/*.{ts,tsx,md}\"",
"build:esm": "tsc --project ./tsconfig.json --module es2015 --outDir dist --declaration",
"build:cli": "esbuild src/cli/index.ts --bundle --outfile=dist/intersphinx.cjs --platform=node",
"build": "npm-run-all -l clean copy:version -p build:esm build:cli",
"changeset": "changeset",
"version": "changeset version && npm install",
"publish": "npm run build && npm run test && changeset publish && git push --follow-tags"
},
"bugs": {
"url": "https://github.com/continuous-foundation/intersphinx/issues"
},
"dependencies": {
"chalk": "^5.2.0",
"commander": "^10.0.1",
"js-yaml": "^4.1.0",
"myst-cli-utils": "^2.0.0",
"node-fetch": "^3.3.1"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.2.5",
"esbuild": "^0.17.19",
"eslint": "^8.42.0",
"eslint-config-curvenote": "latest",
"npm-run-all": "^4.1.5",
"prettier": "latest",
"rimraf": "^5.0.1",
"typescript": "^5.1.3",
"vitest": "^0.32.0"
}
}