-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.03 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.03 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
{
"name": "plainb",
"version": "1.8.0",
"description": "Convert plain text (.py percent format, .md classic/MyST) to Jupyter nbformat 4 JSON",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/notebook-link/plainb"
},
"homepage": "https://github.com/notebook-link/plainb",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "node --test --import tsx test/*.test.ts",
"lint": "eslint src",
"format": "prettier --write src",
"format:check": "prettier --check src",
"demo": "npm run --prefix demo dev",
"demo:build": "npm run --prefix demo build"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"tsx": "^4.19.0",
"typescript": "^5.8.0",
"typescript-eslint": "^8.57.0"
}
}