-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.92 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
{
"name": "@validide/resizable-table-columns",
"version": "0.0.1",
"type": "module",
"description": "Simple Javascript resizable table columns",
"main": "./dist/bundle/index.umd.cjs",
"module": "./dist/bundle/index.js",
"types": "./dist/js/es6/index.d.ts",
"exports": {
".": {
"types": "./dist/js/es6/index.d.ts",
"import": "./dist/bundle/index.js",
"require": "./dist/bundle/index.umd.cjs"
}
},
"scripts": {
"clean": "node -e \"import('fs').then(f=>{f.rmSync('./dist',{recursive:true,force:true}); f.rmSync('./node_modules',{recursive:true,force:true}); f.rmSync('./package-lock.json',{recursive:true,force:true});})\"",
"scss-base": "sass ./sources/scss:./dist/css/ --style expanded --no-source-map",
"scss-base:w": "sass ./sources/scss:./dist/css/ --style expanded --no-source-map --watch",
"tsc": "tsc",
"tsc:w": "tsc --watch",
"prebuild": "node -e \"import('fs').then(f=>{f.rmSync('./dist',{recursive:true,force:true})})\"",
"build": "npm run scss-base && tsc && vite build",
"dev": "concurrently --raw \"npm run scss-base:w\" \"npm run tsc:w\" \"vite\"",
"test": "vitest run --coverage",
"lint": "biome check --write ./",
"check": "tsc -p tsconfig.dev.json --noEmit && npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/validide/resizable-table-columns.git"
},
"keywords": [
"resizable",
"table",
"columns"
],
"author": "Valentin Dide",
"license": "MIT",
"bugs": {
"url": "https://github.com/validide/resizable-table-columns/issues"
},
"homepage": "https://github.com/validide/resizable-table-columns#readme",
"files": [
"dist"
],
"devDependencies": {
"@biomejs/biome": "2.5.0",
"@vitest/coverage-v8": "4.1.8",
"concurrently": "10.0.3",
"jsdom": "29.1.1",
"sass": "1.101.0",
"typescript": "6.0.3",
"vite": "8.0.16",
"vitest": "4.1.8"
}
}