-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 999 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 999 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
{
"name": "tabulator-bindings",
"version": "0.2.5",
"description": "",
"directories": {
"test": "tests"
},
"devDependencies": {
"esbuild": "^0.20.0",
"prettier": "^3.2.4",
"typescript": "^5.6.2"
},
"scripts": {
"build-py": "esbuild src/index.js --bundle --minify --outfile=py-bindings/tabulator-bindings.js",
"build-py-dev": "esbuild src/index.js --bundle --outfile=py-bindings/tabulator-bindings.js",
"prettier": "prettier src --write",
"test": "echo \"Error: no test specified\" && exit 1",
"build-r": "esbuild src/index-r.js --bundle --minify --outfile=r-bindings/rtabulator.js",
"build-r-dev": "esbuild src/index-r.js --bundle --outfile=r-bindings/rtabulator.js",
"build-r-dev-ts": "tsc --build && esbuild built/index-r.js --bundle --outfile=r-bindings/rtabulator.js",
"build-py-dev-ts": "tsc --build && esbuild built/index-py.js --bundle --outfile=py-bindings/pytabulator.js"
},
"author": "Stefan Kuethe",
"license": "MIT"
}