-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
96 lines (96 loc) · 2.76 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
96
{
"name": "excel-collab",
"version": "0.0.8",
"description": "Online Collaboration Excel",
"author": "Steve Xu <[email protected]>",
"bugs": "https://github.com/nusr/excel/issues",
"homepage": "https://github.com/nusr/excel",
"repository": "git+https://github.com/nusr/excel.git",
"license": "MIT",
"main": "./lib/index.cjs.js",
"module": "./lib/index.es.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.es.js",
"module": "./lib/index.es.js",
"require": "./lib/index.cjs.js"
},
"./worker": {
"types": "./lib/worker.d.ts",
"import": "./lib/worker.es.js",
"module": "./lib/worker.es.js",
"require": "./lib/worker.cjs.js"
},
"./style.css": "./lib/style.css",
"./package.json": "./package.json"
},
"scripts": {
"dev": "run-p dev:*",
"dev:frontend": "cd demo/frontend && npm run dev",
"dev:backend": "cd demo/backend && npm run dev",
"type-check": "tsc",
"build": "vite build",
"test": "jest --config ./jest.config.js --forceExit --detectOpenHandles",
"coverage": "npm run test -- --coverage",
"lint": "npx oxlint@latest --fix",
"update-md": "node ./scripts/update-md.js",
"prepare": "husky && npm run build",
"repeat": "jscpd --ignore \"**/*.test.tsx,**/*.test.ts\" --reporters html --mode strict --min-lines 7 --blame --gitignore --exitCode 1 .",
"install-font": "cp ./scripts/SourceCodePro-VariableFont_wght.ttf /usr/share/fonts/ && fc-cache -fv",
"release": "release-it patch --no-git --no-npm"
},
"devDependencies": {
"@release-it/bumper": "^7.0.0",
"@release-it/conventional-changelog": "^10.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/pixelmatch": "^5.2.6",
"@types/pngjs": "^6.0.5",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"canvas": "^2.11.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all": "^4.1.5",
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0",
"release-it": "^18.1.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-plugin-dts": "^4.5.0"
},
"dependencies": {
"chart.js": "^4.4.7",
"jszip": "^3.10.1",
"numfmt": "^3.1.4",
"uuid": "^11.0.5",
"zustand": "^5.0.3"
},
"peerDependencies": {
"comlink": "^4.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"yjs": "^13.6.21"
},
"keywords": [
"react",
"yjs",
"collaboration",
"excel",
"xlsx",
"spreadsheet"
],
"files": [
"lib",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
}
}