-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.78 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
91
92
93
94
95
96
97
98
{
"name": "polynomial",
"title": "Polynomial.js",
"version": "2.0.0",
"type": "commonjs",
"description": "Parse and compute univariate polynomials over real, rational, complex, quaternion, or modular fields",
"homepage": "https://github.com/rawify/Polynomial.js",
"bugs": "https://github.com/rawify/Polynomial.js/issues",
"keywords": [
"math",
"poly",
"polynomial",
"number",
"bigint",
"complex",
"rational",
"parser",
"derivative",
"gcd",
"finite-field"
],
"private": false,
"main": "./dist/polynomial.js",
"module": "./dist/polynomial.mjs",
"browser": "./dist/polynomial.min.mjs",
"unpkg": "./dist/polynomial.min.js",
"types": "./dist/polynomial.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": {
"types": "./dist/polynomial.d.mts",
"default": "./dist/polynomial.mjs"
},
"require": {
"types": "./dist/polynomial.d.ts",
"default": "./dist/polynomial.js"
},
"default": {
"types": "./dist/polynomial.d.ts",
"default": "./dist/polynomial.js"
}
},
"./browser": {
"import": {
"types": "./dist/polynomial.d.mts",
"default": "./dist/polynomial.min.mjs"
},
"default": "./dist/polynomial.min.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/rawify/Polynomial.js.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/rawify"
},
"author": {
"name": "Robert Eisele",
"email": "robert@raw.org",
"url": "https://raw.org/"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"directories": {
"example": "examples"
},
"scripts": {
"clean": "node scripts/clean.mjs",
"typecheck": "tsc --noEmit",
"build:types": "tsc -p tsconfig.build.json",
"build:js": "node scripts/build.mjs",
"build": "npm run clean && npm run build:types && npm run build:js",
"test:types": "tsc -p tests/types/tsconfig.json",
"test:runtime": "node --test tests/*.test.js",
"test": "npm run build && npm run test:types && npm run test:runtime",
"prepublishOnly": "npm test"
},
"dependencies": {
"complex.js": "2.4.2",
"fraction.js": "5.2.2",
"quaternion": "2.1.1"
},
"devDependencies": {
"esbuild": "^0.25.12",
"typescript": "^5.9.3"
}
}