package.json was still at the copier-template default 0.1.0 while CHANGELOG and DEVELOPER.md document 0.0.1. pyproject.toml sources the version from package.json via hatch-nodejs-version, so no edit needed there. Co-Authored-By: Claude <noreply@anthropic.com>
164 lines
5.5 KiB
JSON
164 lines
5.5 KiB
JSON
{
|
|
"name": "snapshot",
|
|
"version": "0.0.1",
|
|
"description": "A JupyterLab extension.",
|
|
"keywords": [
|
|
"jupyter",
|
|
"jupyterlab",
|
|
"jupyterlab-extension"
|
|
],
|
|
"homepage": "http://101.43.40.124:3000/tao.chen/notebook-snapshot-extension.git",
|
|
"bugs": {
|
|
"url": "http://101.43.40.124:3000/tao.chen/notebook-snapshot-extension.git/issues"
|
|
},
|
|
"license": "BSD-3-Clause",
|
|
"author": "taochen",
|
|
"files": [
|
|
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
|
|
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
|
|
"src/**/*.{ts,tsx}",
|
|
"schema/*.json"
|
|
],
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"style": "style/index.css",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "http://101.43.40.124:3000/tao.chen/notebook-snapshot-extension.git.git"
|
|
},
|
|
"scripts": {
|
|
"build": "jlpm build:lib && jlpm build:labextension:dev",
|
|
"build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension",
|
|
"build:labextension": "jupyter-builder build .",
|
|
"build:labextension:dev": "jupyter-builder build --development True .",
|
|
"build:lib": "tsc --sourceMap",
|
|
"build:lib:prod": "tsc",
|
|
"clean": "jlpm clean:lib",
|
|
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
|
|
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
|
|
"clean:labextension": "rimraf snapshot/labextension snapshot/_version.py",
|
|
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
|
|
"eslint": "jlpm eslint:check --fix",
|
|
"eslint:check": "eslint . --cache",
|
|
"install:extension": "jlpm build",
|
|
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
|
|
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
|
|
"prettier": "jlpm prettier:base --write --list-different",
|
|
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
|
|
"prettier:check": "jlpm prettier:base --check",
|
|
"stylelint": "jlpm stylelint:check --fix",
|
|
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
|
|
"test": "jest --coverage",
|
|
"watch": "run-p watch:src watch:labextension",
|
|
"watch:src": "tsc -w --sourceMap",
|
|
"watch:labextension": "jupyter-builder watch ."
|
|
},
|
|
"dependencies": {
|
|
"@jupyterlab/application": "^4.0.0",
|
|
"@jupyterlab/apputils": "^4.0.0",
|
|
"@jupyterlab/coreutils": "^6.0.0",
|
|
"@jupyterlab/docregistry": "^4.0.0",
|
|
"@jupyterlab/notebook": "^4.0.0",
|
|
"@jupyterlab/services": "^7.0.0",
|
|
"@jupyterlab/settingregistry": "^4.0.0",
|
|
"@lumino/signaling": "^2.0.0",
|
|
"@lumino/widgets": "^2.0.0",
|
|
"diff": "^5.2.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.0.0",
|
|
"@jupyter/builder": "^1.0.0",
|
|
"@jupyter/eslint-plugin": "^0.0.5",
|
|
"@jupyterlab/core-meta": "^4.6.0-beta.0",
|
|
"@jupyterlab/testing": "^4.6.1",
|
|
"@jupyterlab/testutils": "^4.0.0",
|
|
"@module-federation/runtime-tools": "^2.0.0",
|
|
"@types/diff": "^5.2.0",
|
|
"@types/jest": "^29.2.0",
|
|
"@types/json-schema": "^7.0.11",
|
|
"@types/react": "^18.0.26",
|
|
"@types/react-addons-linked-state-mixin": "^0.14.22",
|
|
"css-loader": "^6.7.1",
|
|
"eslint": "^9.0.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"globals": "^15.0.0",
|
|
"jest": "^29.2.0",
|
|
"mkdirp": "^1.0.3",
|
|
"npm-run-all2": "^7.0.1",
|
|
"prettier": "^3.0.0",
|
|
"rimraf": "^5.0.1",
|
|
"source-map-loader": "^1.0.2",
|
|
"style-loader": "^3.3.1",
|
|
"stylelint": "^15.10.1",
|
|
"stylelint-config-recommended": "^13.0.0",
|
|
"stylelint-config-standard": "^34.0.0",
|
|
"stylelint-csstree-validator": "^3.0.0",
|
|
"stylelint-prettier": "^4.0.0",
|
|
"ts-jest": "^29.4.11",
|
|
"typescript": "~5.5.4",
|
|
"typescript-eslint": "^8.0.0",
|
|
"yjs": "^13.5.0"
|
|
},
|
|
"resolutions": {
|
|
"lib0": "0.2.111",
|
|
"webpack": "5.106.0"
|
|
},
|
|
"sideEffects": [
|
|
"style/*.css",
|
|
"style/index.js"
|
|
],
|
|
"styleModule": "style/index.js",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"jupyterlab": {
|
|
"discovery": {
|
|
"server": {
|
|
"managers": [
|
|
"pip"
|
|
],
|
|
"base": {
|
|
"name": "snapshot"
|
|
}
|
|
}
|
|
},
|
|
"extension": true,
|
|
"outputDir": "snapshot/labextension",
|
|
"schemaDir": "schema"
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"trailingComma": "none",
|
|
"arrowParens": "avoid",
|
|
"endOfLine": "auto",
|
|
"overrides": [
|
|
{
|
|
"files": "package.json",
|
|
"options": {
|
|
"tabWidth": 4
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"stylelint": {
|
|
"extends": [
|
|
"stylelint-config-recommended",
|
|
"stylelint-config-standard",
|
|
"stylelint-prettier/recommended"
|
|
],
|
|
"plugins": [
|
|
"stylelint-csstree-validator"
|
|
],
|
|
"rules": {
|
|
"csstree/validator": true,
|
|
"property-no-vendor-prefix": null,
|
|
"selector-class-pattern": "^([a-z][A-z\\d]*)(-[A-z\\d]+)*$",
|
|
"selector-no-vendor-prefix": null,
|
|
"value-no-vendor-prefix": null
|
|
}
|
|
}
|
|
}
|