-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 1.97 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
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
{
"name": "@gridsheet/react-core",
"version": "3.1.0",
"description": "Spreadsheet component for React",
"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"
},
"./dev": {
"types": "./dist/dev.d.ts",
"import": "./dist/dev.js",
"default": "./dist/dev.js"
},
"./spellbook": {
"types": "./dist/spellbook.d.ts",
"import": "./dist/spellbook.js",
"default": "./dist/spellbook.js"
}
},
"scripts": {
"build": "rm -rf ./dist || true && vite build",
"typecheck": "pnpm tsc --noEmit --types jest",
"jest": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walkframe/gridsheet.git"
},
"keywords": [
"spreadsheet",
"spread-sheet",
"excel",
"gridsheet",
"react",
"formula",
"grid"
],
"author": "righ",
"license": "Apache-2.0",
"files": [
"dist/",
"package.json",
"README.md",
"LICENSE"
],
"bugs": {
"url": "https://github.com/walkframe/gridsheet/issues"
},
"homepage": "https://gridsheet.walkframe.com/",
"packageManager": "pnpm@10.6.5",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/react": "^16.9.24",
"@types/react-dom": "^16.9.24",
"@vitejs/plugin-react": "^4.3.4",
"dayjs": "^1.11.13",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"less": "^4.1.3",
"less-plugin-clean-css": "^1.5.1",
"react": ">=16.9.0",
"react-dom": ">=16.9.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.8.2",
"vite": "^6.4.3",
"vite-plugin-dts": "^4.5.3",
"@gridsheet/functions": "workspace:*"
},
"dependencies": {
"@gridsheet/core": "workspace:*"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"publishConfig": {
"access": "public"
}
}