-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.27 KB
/
package.json
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@marimo-team/blocks",
"version": "0.0.2",
"publishConfig": {
"access": "public"
},
"description": "React components for building your own Python notebook",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/marimo-team/blocks"
},
"scripts": {
"dev": "vite",
"typecheck": "tsc --noEmit",
"lint": "biome check --write",
"format": "biome format --write",
"test": "vitest",
"demo": "vite build",
"build": "tsc",
"prepublishOnly": "pnpm run typecheck && pnpm run test && pnpm run build",
"release": "pnpm version",
"pre-commit": "lint-staged"
},
"keywords": [
"marimo",
"notebook",
"python",
"pyodide",
"react"
],
"license": "Apache-2.0",
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
},
"dependencies": {
"@codemirror/lang-python": "^6.1.7",
"@codemirror/state": "^6.5.1",
"@codemirror/view": "^6.36.2",
"@uiw/react-codemirror": "^4.23.7",
"codemirror": "^6.0.1",
"dompurify": "^3.2.3",
"jotai": "^2.11.1",
"pyodide": "^0.27.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/material": "^6.4.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@textea/json-viewer": "^4.0.1",
"@types/node": "^22.12.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "3.0.4",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.4.3",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vitest": "^3.0.4"
},
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"types": "./dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=18"
},
"module": "./dist/index.js",
"lint-staged": {
"*.{ts,tsx}": [
"biome check --write",
"biome format --write",
"vitest related --run"
]
}
}