-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.87 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.87 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
{
"name": "devaccel-data-grid",
"version": "1.1.0-beta.3",
"description": "Dynamic table library.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.MD"
],
"repository": {
"type": "git",
"url": "git+https://github.com/crcnum4/devAccelDataGrid.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts,jsx,tsx}\"",
"build": "npm run build:esm && npm run build:cjs && npm run copy-styles",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"prepare": "npm run build",
"prepublishOnly": "npm run prettier && npm run lint",
"copy-styles": "copyfiles -u 1 'src/styles/**/*' dist/esm/styles && copyfiles -u 1 'src/styles/**/*' dist/cjs/styles"
},
"keywords": [
"react",
"typescript",
"devAccel",
"DevAccelerator",
"Tables",
"DataGrid"
],
"author": "Clifton Choiniere (crcnum4)",
"license": "MIT",
"peerDependencies": {
"@fortawesome/free-solid-svg-icons": "=6",
"@fortawesome/react-fontawesome": ">=0.2",
"react": ">=18"
},
"devDependencies": {
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@types/react": "^18.3.4",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^4.6.2",
"moment": "^2.30.1",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tslib": "^2.7.0",
"typescript": "^5.5.4"
}
}