-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2 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
65
66
67
68
69
70
71
72
{
"name": "cosovo",
"version": "0.2.0",
"description": "Byte-precise CSV parser.",
"keywords": [
"csv",
"fetch",
"remote",
"range",
"http",
"papaparse",
"parse",
"iterator"
],
"type": "module",
"license": "MIT",
"homepage": "https://github.com/severo/cosovo#readme",
"bugs": {
"url": "https://github.com/severo/cosovo/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/severo/cosovo.git"
},
"author": "Sylvain Lesage <severo@rednegra.net>",
"files": [
"dist"
],
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown --tsconfig=tsconfig.build.json",
"build:docs": "typedoc",
"coverage": "vitest run --coverage --project=node",
"dev": "tsdown --tsconfig=tsconfig.build.json --watch",
"examples": "vitest run --project=examples",
"lint": "npm run lint:docs && npm run lint:eslint && npm run lint:types",
"lint:docs": "typedoc --validation",
"lint:eslint": "eslint .",
"lint:types": "tsc --noEmit",
"prepublishOnly": "npm i && npm run build",
"test:browser": "vitest run --project=browser",
"test:node": "vitest run --project=node",
"test:ui": "vitest --coverage --project=node --ui",
"test:watch": "vitest",
"test": "npm run test:node && npm run test:browser"
},
"devDependencies": {
"@eslint/compat": "2.0.2",
"@eslint/js": "9.39.1",
"@stylistic/eslint-plugin": "5.8.0",
"@types/node": "25.2.2",
"@vitest/browser-playwright": "4.0.14",
"@vitest/coverage-v8": "4.0.14",
"@vitest/ui": "4.0.14",
"bumpp": "10.4.1",
"eslint": "9.39.1",
"eslint-plugin-jsdoc": "62.5.4",
"eslint-plugin-simple-import-sort": "12.1.1",
"globals": "17.3.0",
"tsdown": "0.20.3",
"typedoc": "0.28.16",
"typescript": "5.9.3",
"typescript-eslint": "8.54.0",
"vitest": "4.0.14"
}
}