-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 KB
/
package.json
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
{
"name": "@pola-rs/browser",
"collaborators": [
"Cory Grinstead"
],
"version": "0.0.1-alpha.6",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/universalmind303/js-polars"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"build:debug": "wasm-pack build --target web -d polars/core --dev --scope pola-rs --out-name browser && rm polars/core/package.json && rm polars/core/README.md && tsc && cp -r polars/core dist/",
"build": "wasm-pack build --target web -d polars/core --scope pola-rs --out-name browser && rm polars/core/package.json && rm polars/core/README.md && tsc && cp -r polars/core dist/",
"start": "rimraf dist pkg && webpack-dev-server --open -d",
"test": "cargo test && wasm-pack test --headless"
},
"devDependencies": {
"rome": "^11.0.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typedoc": "^0.23.23",
"typescript": "4.9"
},
"module": "dist/index.js",
"files": [
"dist/",
"dist/core/",
"dist/core/snippets/",
"dist/core/browser_bg.wasm",
"dist/core/browser.js",
"dist/core/browser.d.ts"
],
"keywords": [
"csv",
"transform",
"parse",
"json",
"polars",
"dataframe",
"data-processing"
],
"packageManager": "[email protected]"
}