forked from Symeres/sdf-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
{
"name": "@squonk/sdf-parser",
"private": false,
"version": "1.3.0",
"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",
"exports": {
".": "./src/index.ts"
},
"types": "./src/index.ts",
"publishConfig": {
"exports": {
".": "./dist/index.js"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts"
},
"scripts": {
"build": "tsup",
"start": "tsup --watch",
"tsc": "tsc --pretty --noEmit",
"lint": "eslint --cache --max-warnings=0",
"format": "eslint --fix --cache --max-warnings=0",
"test": "vitest"
},
"devDependencies": {
"@squonk/eslint-config": "2.0.0",
"@types/node": "22.9.0",
"eslint": "8.57.0",
"tsup": "8.0.2",
"typescript": "5.4.5",
"vitest": "1.5.0",
"node-fetch": "3.3.2"
}
}