-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.38 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.38 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
{
"name": "@gridsheet/react-dev",
"version": "3.0.6",
"description": "Development tools for GridSheet",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "rm -rf ./dist || true && vite build",
"typecheck": "pnpm tsc --noEmit"
},
"keywords": [
"spreadsheet",
"gridsheet",
"react",
"devtools"
],
"author": "righ",
"license": "Apache-2.0",
"files": [
"dist/",
"package.json",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/walkframe/gridsheet.git"
},
"bugs": {
"url": "https://github.com/walkframe/gridsheet/issues"
},
"homepage": "https://gridsheet.walkframe.com/",
"packageManager": "pnpm@10.6.5",
"peerDependencies": {
"@gridsheet/core": "3.0.6",
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"devDependencies": {
"@gridsheet/core": "workspace:*",
"@types/react": "^16.9.24",
"@types/react-dom": "^16.9.24",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "^5.8.2",
"vite": "^6.4.2",
"vite-plugin-dts": "^4.5.3"
},
"dependencies": {
"@types/react-syntax-highlighter": "^15.5.13",
"react-syntax-highlighter": "^16.1.1"
}
}