-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.71 KB
/
package.json
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
{
"name": "@octocloud/core",
"version": "1.0.67",
"license": "ISC",
"author": "",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"files": ["dist"],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"build:dry": "tsc --noEmit",
"build:dry:ci": "tsc --noEmit",
"check": "npm run build:dry && npm run format && npm run lint",
"fix": "biome check --write .",
"format": "biome format",
"format:fix": "biome format --write .",
"lint": "biome lint",
"lint:fix": "biome lint --write .",
"test": "VITE_CJS_IGNORE_WARNING=true vitest run --config ./vitest.config.ts",
"test:coverage": "VITE_CJS_IGNORE_WARNING=true vitest run --config ./vitest.config.ts --coverage",
"dev": "npm run build -- --watch src",
"lefthook": "lefthook install",
"audit": "audit-ci --config ./audit-ci.json",
"prepare": "npm run build"
},
"types": "./dist/index.d.ts",
"dependencies": {
"@octocloud/types": "^1.5.34",
"@dinero.js/currencies": "2.0.0-alpha.8",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"dinero.js": "^2.0.0-alpha.14",
"libphonenumber-js": "^1.10.53",
"tsyringe": "^4.8.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@octocloud/generators": "^1.0.11",
"@types/uuid": "^9.0.0",
"@types/node": "^22.9.0",
"typescript": "^5.7.2",
"@vitest/coverage-v8": "2.1.3",
"audit-ci": "7.1.0",
"lefthook": "1.10.10",
"tsup": "8.3.5",
"vite": "5.4.14",
"vitest": "2.1.3",
"vitest-mock-extended": "2.0.2"
}
}