-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 863 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 863 Bytes
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
{
"name": "react-sticky-table-hook",
"author": "Nicolaj Kirkegaard Nielsen",
"description": "A React hook for creating tables with sticky rows and columns",
"version": "1.0.3",
"private": false,
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"/dist"
],
"devDependencies": {
"@types/react": "^18.0.25",
"react": "^18.2.0",
"rimraf": "^3.0.2",
"standard-version": "^9.5.0",
"typescript": "^4.8.4"
},
"scripts": {
"prebuild": "npm run clean",
"clean": "rimraf -rf ./dist",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.json --module commonjs --outDir dist/cjs --target es5",
"build:esm": "tsc -p tsconfig.json --module esNext --outDir dist/esm --target es6",
"release": "standard-version"
}
}