-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.26 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
{
"name": "@ytoune/virtualized",
"version": "4.0.0",
"description": "utility for efficiently rendering large lists and tabular data",
"author": {
"name": "ytoune"
},
"engines": {
"node": ">= 16"
},
"volta": {
"node": "22.11.0",
"yarn": "1.22.22"
},
"source": "src/index.ts",
"unpkg": "./dist/index.umd.js",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ytoune/virtualized.git"
},
"homepage": "https://github.com/ytoune/virtualized",
"license": "MIT",
"scripts": {
"build": "unbuild && microbundle -f umd --generateTypes=false --no-sourcemap",
"test": "npm run lint && tsc --noEmit && vitest run --passWithNoTests",
"lint": "eslint \"{src,scripts}/**/*.{ts,tsx}\"",
"lint-fix": "eslint \"{src,scripts}/**/*.{ts,tsx}\" --fix",
"ts-node": "node -r esbuild-register"
},
"dependencies": {},
"devDependencies": {
"@eslint/compat": "1.2.3",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.15.0",
"@types/eslint__eslintrc": "2.1.2",
"@types/eslint__js": "8.42.3",
"@types/node": "22.10.1",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"esbuild": "0.24.0",
"esbuild-register": "3.6.0",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-github": "5.1.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "15.12.0",
"microbundle": "0.15.1",
"prettier": "3.4.1",
"rimraf": "6.0.1",
"typescript": "5.7.2",
"unbuild": "2.0.0",
"vite": "6.0.1",
"vitest": "2.1.6"
},
"resolutions": {
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"esbuild": "0.24.0",
"vite": "6.0.1"
},
"prettier": {
"useTabs": false,
"singleQuote": true,
"trailingComma": "all",
"semi": false,
"arrowParens": "avoid",
"htmlWhitespaceSensitivity": "ignore"
}
}