-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.07 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.07 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
{
"name": "@audius/fixed-decimal",
"version": "0.2.1",
"description": "A data structure to represent fixed precision decimals",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"scripts": {
"start": "./scripts/makePackageTypes.sh && tsc --build --verbose --watch tsconfig.build.json",
"build": "./scripts/makePackageTypes.sh && tsc --build --verbose tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AudiusProject/apps.git",
"directory": "packages/fixed-decimal"
},
"author": "Audius",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/AudiusProject/apps/issues"
},
"homepage": "https://github.com/AudiusProject/apps/tree/main/packages/fixed-decimal",
"devDependencies": {
"eslint": "8.56.0",
"vitest": "2.1.1"
}
}