-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.76 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.76 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
{
"name": "flexisvg",
"version": "1.1.0",
"description": "SVG sprite generator with TypeScript type generation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./dist/*": "./dist/*"
},
"author": "Chiman2937",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Chiman2937/FlexiSVG.git"
},
"bugs": {
"url": "https://github.com/Chiman2937/FlexiSVG/issues"
},
"keywords": [
"svg",
"sprite",
"generator",
"typescript",
"svg-sprite",
"icon",
"build-tool",
"type-generation"
],
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"bin": {
"flexisvg": "./bin/cli.js"
},
"files": [
"dist",
"bin",
"templates"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "biome lint ./src ./bin",
"lint:fix": "biome lint --write ./src ./bin",
"format": "biome format ./src ./bin",
"format:fix": "biome format --write ./src ./bin",
"check": "biome check ./src ./bin",
"check:fix": "biome check --write ./src ./bin",
"release:patch": "npm version patch && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:major": "npm version major && git push --follow-tags",
"prepublishOnly": "npm run check:fix && npm run build"
},
"dependencies": {
"commander": "^12.0.0",
"jiti": "^2.6.1",
"prettier": "^3.2.5",
"svg-sprite": "^2.0.4",
"svgo": "^3.2.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@types/node": "^20.11.19",
"@types/svg-sprite": "^0.0.38",
"typescript": "^5.3.3"
},
"packageManager": "pnpm@10.13.1"
}