-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.43 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@zktools/fields",
"version": "0.1.0",
"description": "Limb-based BN254 finite field arithmetic in Montgomery form — pure JavaScript, zero runtime dependencies",
"license": "MIT",
"author": "Ethan <git@gnu.foo>",
"repository": {
"type": "git",
"url": "git+https://github.com/gnufood/zktools-fields.git"
},
"homepage": "https://github.com/gnufood/zktools-fields#readme",
"bugs": {
"url": "https://github.com/gnufood/zktools-fields/issues"
},
"keywords": [
"bn254",
"alt-bn128",
"finite-field",
"montgomery",
"zero-knowledge",
"zkp",
"snark",
"groth16",
"cryptography",
"fp2"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:ci": "vitest run --reporter=verbose --reporter=junit --outputFile=test-results/junit.xml",
"test:coverage": "vitest run --coverage",
"lint": "eslint src tests --max-warnings 0",
"lint:fix": "eslint src tests --fix",
"format": "prettier --write src tests",
"format:check": "prettier --check src tests",
"codegen": "node --experimental-strip-types codegen/gen-mont-mul.ts",
"gen-inv": "node --experimental-strip-types codegen/gen-inv.ts",
"typecheck": "tsc --noEmit -p tsconfig.test.json",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "2.30.0",
"@noble/curves": "2.0.1",
"@types/node": "^25.5.2",
"@typescript-eslint/eslint-plugin": "8.58.0",
"@typescript-eslint/parser": "8.58.0",
"@vitest/coverage-v8": "4.1.3",
"@vitest/ui": "4.1.3",
"eslint": "10.2.0",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-n": "17.24.0",
"eslint-plugin-unicorn": "64.0.0",
"prettier": "3.8.1",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.1.3"
},
"engines": {
"node": ">=20"
}
}