-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.64 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.64 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
{
"name": "@squonk/sdf-parser",
"private": false,
"version": "1.3.1",
"contributors": [
{
"name": "Informatics Matters Ltd"
},
{
"name": "Symeres",
"url": "https://github.com/Symeres/sdf-parser"
}
],
"description": "A parser for SDF files with streaming support",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": "./src/index.ts",
"./node": "./src/node-stream.ts",
"./web": "./src/web-stream.ts",
"./package.json": "./package.json"
},
"types": "./dist/index.d.cts",
"publishConfig": {
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./node": {
"require": "./dist/node.cjs",
"import": "./dist/node.js"
},
"./web": {
"require": "./dist/web.cjs",
"import": "./dist/web.js"
},
"./package.json": "./package.json"
}
},
"scripts": {
"build": "tsdown",
"start": "tsdown --watch",
"tsc": "tsc --pretty --noEmit",
"lint": "eslint --cache --max-warnings=0",
"format": "eslint --fix --cache --max-warnings=0",
"test": "vitest"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.1",
"@semantic-release/npm": "12.0.1",
"@squonk/eslint-config": "3.0.0",
"@types/node": "22.9.0",
"eslint": "9.25.1",
"node-fetch": "3.3.2",
"semantic-release": "24.2.3",
"tsdown": "0.18.3",
"typescript": "5.4.5",
"vitest": "1.5.0"
}
}