-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
{
"name": "@visualjs/grid",
"version": "1.1.6",
"description": "JavaScript Data Table",
"main": "./dist/visual-grid.umd.js",
"module": "./dist/visual-grid.es.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite --force",
"build": "vite build && tsc -p ./tsconfig.dist.json -emitDeclarationOnly && tsc-alias -p ./tsconfig.dist.json && cp -r ./src/themes ./dist",
"preview": "vite preview",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/visualjs/grid.git"
},
"keywords": [
"visualjs",
"grid",
"table"
],
"author": "visualjs",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/visualjs/grid/issues"
},
"homepage": "https://github.com/visualjs/grid#readme",
"devDependencies": {
"@preact/preset-vite": "^2.1.0",
"@types/jest": "^27.0.1",
"@types/normalize-wheel": "^1.0.0",
"autoprefixer": "^10.3.4",
"clsx": "^1.1.1",
"esbuild-jest": "^0.5.0",
"identity-obj-proxy": "^3.0.0",
"immutability-helper": "^3.1.1",
"jest": "^27.1.0",
"normalize-wheel": "^1.0.1",
"postcss-flexbugs-fixes": "^5.0.2",
"preact": "^10.5.14",
"ts-jest": "^27.0.5",
"tsc-alias": "^1.3.9",
"typescript": "^4.3.5",
"vite": "^2.5.0"
},
"files": [
"dist/**/*.css",
"dist/**/*.js",
"dist/**/*.d.ts"
]
}