-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.18 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.18 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
{
"name": "vurtis",
"version": "0.0.12",
"description": "Fluid grid virtualization for React",
"author": "Curtis Dulmage",
"license": "ISC",
"keywords": [
"typescript",
"react",
"virtualization",
"grid"
],
"homepage": "https://github.com/beefchimi/vurtis#readme",
"bugs": {
"url": "https://github.com/beefchimi/vurtis/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beefchimi/vurtis.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"type": "module",
"main": "./dist/vurtis.umd.js",
"module": "./dist/vurtis.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/vurtis.es.js",
"require": "./dist/vurtis.umd.js",
"types": "./dist/index.d.ts"
}
},
"engines": {
"node": ">=20.13.0",
"npm": ">=10.5.0"
},
"scripts": {
"clean": "rm -rf coverage && rm -rf dist && rm -rf node_modules/.cache && rm -rf node_modules/.vite",
"nuke": "npm run clean && rm -rf node_modules && rm -rf package-lock.json && npm cache clean --force",
"build": "npm run clean && tsc && vite build",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest --run --coverage",
"report": "changeset",
"release:version": "changeset version",
"release:publish": "changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.5",
"@types/node": "^20.12.13",
"@types/react": "^18.3.3",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"beeftools": "^0.1.3",
"eslint": "^8.57.0",
"eslint-config-love": "^51.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.3.0",
"prettier": "^3.2.5",
"react": "^18.3.1",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0"
},
"peerDependencies": {
"beeftools": "^0.1.0",
"react": "^18.0.0"
}
}