-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
119 lines (119 loc) · 3.71 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "web-csv-toolbox",
"version": "0.11.0",
"description": "A CSV Toolbox utilizing Web Standard APIs.",
"type": "module",
"main": "dist/cjs/web-csv-toolbox.cjs",
"module": "dist/es/web-csv-toolbox.js",
"types": "dist/types/web-csv-toolbox.d.ts",
"unpkg": "dist/web-csv-toolbox.umd.js",
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
},
"sideEffects": false,
"exports": {
".": {
"types": "./dist/types/web-csv-toolbox.d.ts",
"import": "./dist/es/web-csv-toolbox.js",
"require": "./dist/cjs/web-csv-toolbox.cjs",
"default": "./dist/es/web-csv-toolbox.js"
},
"./*": {
"types": "./dist/types/*.d.ts",
"import": "./dist/es/*.js",
"require": "./dist/cjs/*.cjs",
"default": "./dist/es/*.js"
},
"./common/*": {
"types": "./dist/types/common/*.d.ts",
"import": "./dist/es/common/*.js",
"require": "./dist/cjs/common/*.cjs",
"default": "./dist/es/common/*.js"
},
"./utils/*": {
"types": "./dist/types/utils/*.d.ts",
"import": "./dist/es/utils/*.js",
"require": "./dist/cjs/utils/*.cjs",
"default": "./dist/es/utils/*.js"
},
"./web_csv_toolbox_wasm_bg.wasm": "./dist/web_csv_toolbox_wasm_bg.wasm",
"./package.json": "./package.json"
},
"imports": {
"./loadWASM.js": {
"types": "./dist/types/loadWASM.d.ts",
"browser": {
"import": "./dist/es/loadWASM.web.js",
"require": "./dist/cjs/loadWASM.web.cjs",
"default": "./dist/es/loadWASM.web.js"
},
"import": "./dist/es/loadWASM.js",
"require": "./dist/cjs/loadWASM.cjs",
"default": "./dist/es/loadWASM.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"doc": "typedoc",
"test": "vitest",
"check:type": "tsc --noEmit",
"check:format": "pnpm check:format:js",
"check:format:js": "biome ci .",
"test:browser": "vitest --browser",
"test:coverage": "vitest --coverage",
"test:bench": "pnpm --filter web-csv-toolbox-benchmark start",
"build": "pnpm build:wasm && pnpm build:js && pnpm build:browser",
"build:wasm": "wasm-pack build web-csv-toolbox-wasm --target web",
"build:js": "vite build",
"build:browser": "vite build --config config/vite.config.umd.ts",
"serve": "vite serve",
"format": "pnpm format:js && pnpm format:rust",
"format:js": "biome check --apply .",
"format:rust": "cargo fmt --manifest-path web-csv-toolbox-wasm/Cargo.toml --all && cargo clippy --manifest-path web-csv-toolbox-wasm/Cargo.toml --all-targets --all-features"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kamiazya/web-csv-toolbox.git"
},
"keywords": [
"csv",
"parser",
"web-streams",
"web-streams-api"
],
"author": "Yuki Yamazaki <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kamiazya/web-csv-toolbox/issues"
},
"publishConfig": {
"provenance": true
},
"homepage": "https://kamiazya.github.io/web-csv-toolbox/",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@codecov/vite-plugin": "0.0.1-beta.10",
"@fast-check/vitest": "^0.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/pluginutils": "^5.1.0",
"@vitest/browser": "^1.2.2",
"@vitest/coverage-istanbul": "^1.2.2",
"@wasm-tool/rollup-plugin-rust": "^2.4.5",
"changesets-github-release": "^0.1.0",
"fast-check": "^3.15.0",
"terser": "^5.27.0",
"typedoc": "^0.26.6",
"typedoc-plugin-mdn-links": "^3.1.14",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-dts": "^3.7.2",
"vitest": "^1.2.2",
"webdriverio": "^9.0.6"
}
}