forked from finos/regular-table
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.17 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.17 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
{
"name": "regular-table",
"version": "0.8.2",
"description": "A regular `<table>`, for an async and virtual data model.",
"repository": {
"type": "git",
"url": "https://github.com/finos/regular-table"
},
"engines": {
"node": ">=16"
},
"license": "Apache-2.0",
"main": "dist/esm/regular-table.js",
"module": "dist/esm/regular-table.js",
"browser": "dist/esm/regular-table.js",
"unpkg": "dist/esm/regular-table.js",
"jsdelivr": "dist/esm/regular-table.js",
"types": "dist/esm/regular-table.d.ts",
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"docs:sign": "git shortlog --summary --email > ./AUTHORS",
"build:esbuild": "node build.mjs",
"build": "npm-run-all build:esbuild",
"clean": "rm -rf dist",
"authors": "git shortlog --summary --email",
"docs": "pnpm run build && node scripts/sync_gist.js && (cd docs && pnpm run build)",
"docs:api": "typedoc",
"fix": "prettier --write src tests features/*.js examples/**/*.js examples/*.html",
"lint": "prettier --check src tests features/*.js examples/**/*.js examples/*.html",
"start": "http-server",
"test": "pnpm exec playwright test",
"bench": "node benchmarks/benchmark.mjs",
"changelog": "docker run -it --rm -e CHANGELOG_GITHUB_TOKEN=$GITHUB_TOKEN -v \"$(pwd)\":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u finos -p regular-table",
"watch": "npm-run-all -p watch:*"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"typedoc": "^0.27.0",
"@prospective.co/procss": "^0.1.16",
"@types/react": "^17.0.0",
"esbuild": "^0.25.0",
"glob": "^10",
"http-server": "^0.12.3",
"npm-run-all": "^4.1.3",
"prettier": "^3.4.2",
"react": "15",
"react-dom": "15",
"superstore-arrow": "^1.0.0",
"typescript": "^5"
},
"dependencies": {},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
}
}