-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 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
{
"name": "@cmi-dair/nifti-stream",
"displayName": "nifti-stream",
"type": "module",
"version": "0.1.0",
"description": "Async streaming NIFTI file reader",
"scripts": {
"build": "node build.js",
"test": "vitest",
"test:watch": "vitest --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"prepare": "npm run build",
"dev": "npx http-server . -o demo/index.html --no-clipboard -c-1",
"docs": "typedoc"
},
"types": "./dist/index.d.ts",
"module": "dist/index.js",
"browser": "dist/nifti-stream.js",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"files": [
"dist",
"README.md",
"package.json"
],
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/childmindresearch/nifti-stream.git"
},
"bugs": {
"url": "https://github.com/childmindresearch/nifti-stream/issues"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"esbuild": "^0.24.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.4.2",
"typedoc": "^0.27.4",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}