-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.37 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": "@kooltuoehias/sprite-solver",
"version": "1.0.0",
"description": "SPRITE algorithm implementation in TypeScript for research integrity checking.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"benchmark": "node --loader ts-node/esm benchmarks/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"sprite",
"research-integrity",
"statistics",
"mean",
"standard-deviation",
"distribution"
],
"author": "kooltuoehias <knitehias@outlook.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kooltuoehias/sprite-solver.git"
},
"homepage": "https://github.com/kooltuoehias/sprite-solver#readme",
"bugs": {
"url": "https://github.com/kooltuoehias/sprite-solver/issues"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
"@types/jest": "^30.0.0",
"benchmark": "^2.1.4",
"jest": "^30.4.2",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
}
}