-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.46 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.46 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
{
"name": "npyjs",
"version": "1.1.0",
"description": "Parse npy files in JS",
"license": "Apache-2.0",
"author": "Jordan Matelsky <j6k4m8@gmail.com>",
"repository": "https://github.com/aplbrain/npyjs.git",
"homepage": "https://github.com/aplbrain/npyjs",
"bugs": "https://github.com/aplbrain/npyjs/issues",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./reshape": {
"types": "./dist/reshape.d.ts",
"import": "./dist/reshape.js",
"require": "./dist/reshape.cjs"
}
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup src/index.ts src/reshape.ts --dts --format esm,cjs --clean",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build && npm test && npm run typecheck"
},
"dependencies": {
"cross-fetch": "^4.1.0"
},
"devDependencies": {
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"keywords": [
"numpy",
"npy",
"javascript",
"typescript",
"browser",
"node",
"tensor"
]
}