-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.56 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
{
"name": "@octocloud/generators",
"version": "1.0.12",
"description": "",
"license": "MIT",
"author": "",
"homepage": "https://github.com/octotravel/octo-generator#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/octotravel/octo-generator.git"
},
"bugs": {
"url": "https://github.com/octotravel/octo-generator/issues"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"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",
"date-fns": "^2.29.1",
"date-fns-tz": "^1.3.6",
"uuid": "^9.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@octocloud/validator": "octotravel/validator#biomejs",
"@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"
},
"keywords": []
}