-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.35 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "vite-font-extractor-plugin",
"version": "2.3.1",
"description": "Vite plugin for extracting glyphes by ligatures from font and creating new minimized fonts with them",
"files": [
"dist"
],
"homepage": "https://github.com/a3mitskevich/vite-font-extractor-plugin",
"repository": {
"type": "git",
"url": "git+https://github.com/a3mitskevich/vite-font-extractor-plugin.git"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsup",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest",
"test:local": "TEST_TARGET=local npm run test",
"test:dist": "TEST_TARGET=dist npm run test",
"lint": "eslint **/*.ts --cache --cache-strategy content",
"lint:fix": "npm run lint -- --fix",
"versioning": "npm version $PART -m \"Updating the application version to %s\"",
"versioning:patch": "npm run versioning --PART patch",
"versioning:minor": "npm run versioning --PART minor",
"versioning:major": "npm run versioning --PART major"
},
"keywords": [
"vite",
"vite-plugin",
"font-minificator",
"fonts",
"minificator",
"ligature"
],
"author": "Aleksandr Mitskevich",
"license": "MIT",
"dependencies": {
"fontext": "1.2.0",
"lodash.camelcase": "4.3.0",
"lodash.groupby": "4.6.0",
"picocolors": "1.1.1"
},
"peerDependencies": {
"vite": "^4 || ^5 || ^6"
},
"devDependencies": {
"@tsconfig/node20": "20.1.4",
"@types/jest": "29.5.11",
"@types/lodash.camelcase": "4.3.9",
"@types/lodash.groupby": "4.6.9",
"@types/node": "20.10.7",
"@typescript-eslint/eslint-plugin": "6.18.1",
"eslint": "8.56.0",
"eslint-config-standard-with-typescript": "43.0.1",
"jest": "29.7.0",
"lightningcss": "1.22.1",
"sass": "1.83.4",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tsup": "8.3.5",
"typescript": "5.7.3",
"vite-4": "https://registry.npmjs.org/vite/-/vite-4.5.1.tgz",
"vite-5": "https://registry.npmjs.org/vite/-/vite-5.4.14.tgz",
"vite-6": "https://registry.npmjs.org/vite/-/vite-6.0.11.tgz"
}
}