forked from xwinstone/canvastable
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.09 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.09 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
{
"name": "@borderliner/canvas-table",
"version": "0.1.25",
"description": "⚡ High-performance canvas table that display mass of data for web.",
"keywords": [
"canvas table",
"canvas",
"table",
"grid"
],
"type": "module",
"scripts": {
"dev": "vite",
"build:dev": "vite build",
"build:lib": "BUILD_TARGET=library vite build",
"build": "npm run build:lib"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/Borderliner/CanvasTable",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Mohammadreza Hajianpour <hajianpour.mr@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/preset-react": "^7.26.3",
"@types/node": "^22.13.1",
"@vitejs/plugin-react": "^4.3.4",
"sass": "^1.84.0",
"typescript": "5.7.3",
"vite": "^5.0.0",
"vite-plugin-clean": "^1.0.0",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-sass-dts": "^1.3.30",
"vite-plugin-static-copy": "^2.2.0"
}
}