-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.45 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.45 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
{
"name": "decimation",
"version": "0.1.4",
"description": "Natural math notation library for JavaScript decimals",
"repository": {
"type": "git",
"url": "git+https://github.com/shamrin/decimation.git"
},
"type": "module",
"exports": {
".": {
"types": "./dist/core.d.ts",
"import": "./src/core.js"
},
"./prisma": {
"types": "./dist/prisma.d.ts",
"import": "./src/prisma.js"
},
"./decimal.js": {
"types": "./dist/decimal.d.ts",
"import": "./src/decimal.js"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc",
"test": "node --test",
"test:watch": "node --test --watch",
"bench": "node benchmark.js",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "oxlint",
"lint:fix": "oxlint --fix"
},
"keywords": [
"math",
"decimal",
"prisma",
"decimal.js"
],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@prisma/client": "^5.0.0",
"decimal.js": "^10.4.3",
"oxlint": "^1.43.0",
"prettier": "^3.8.1",
"typescript": "^5.0.0"
},
"peerDependencies": {
"@prisma/client": ">=4.0.0",
"decimal.js": ">=10.0.0"
},
"peerDependenciesMeta": {
"@prisma/client": {
"optional": true
},
"decimal.js": {
"optional": true
}
},
"volta": {
"node": "24.12.0"
}
}