-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.65 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.65 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
{
"name": "nbtx",
"version": "0.4.0",
"description": "Jupyter Notebook Translators: Transform Jupyter notebook JSON files (*.ipynb) to and from more compact data structures for use in web applications or other contexts where loading component parts (e.g. images, data, etc.) is preferred.",
"author": "Steve Purves <steve@curvenote.com>",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"jupyter",
"notebooks",
"publishing"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/continuous-foundation/nbtx.git"
},
"bugs": {
"url": "https://github.com/continuous-foundation/nbtx/issues"
},
"scripts": {
"prepublishOnly": "npm test && npm run build",
"clean": "rimraf dist",
"dev": "run-p \"build:* -- --watch\"",
"test": "vitest run",
"test:watch": "vitest watch",
"lint": "eslint \"src/**/!(*.spec).ts\" -c ./.eslintrc.cjs",
"lint:format": "prettier --check \"src/**/*.{ts,tsx,md}\"",
"build:esm": "tsc",
"build": "npm-run-all -l clean -p build:esm",
"changeset": "changeset",
"version": "changeset version && npm install",
"publish": "npm run build && npm run test && changeset publish && git push --follow-tags"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@jupyterlab/nbformat": "^3.3.2",
"eslint": "^8.57.1",
"eslint-config-curvenote": "latest",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"typescript": "^5.8.2",
"vitest": "^3.0.7"
}
}