forked from samuelmeuli/font-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.26 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.26 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
74
75
76
77
78
79
80
81
82
83
{
"name": "@slatebox/font-manager",
"version": "1.5.0",
"type": "module",
"description": "Manages, downloads and applies Google Fonts for picker components",
"author": {
"name": "Tim Heckel",
"email": "tim@slatebox.com",
"url": "https://slatebox.com"
},
"repository": "github:slatebox/font-manager",
"license": "MIT",
"keywords": [
"fonts",
"google fonts",
"preview",
"download"
],
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"files": [
"./dist/",
"./dist/styles.css"
],
"scripts": {
"start": "rollup --config --sourcemap --watch",
"build": "run-s build:*",
"build:clean": "rm -rf ./dist/",
"build:ts": "rollup --config",
"build:types": "tsc --emitDeclarationOnly",
"test": "tsc --noEmit",
"lint:css": "stylelint --ignore-path ./.gitignore --max-warnings 0 '**/*.{css,sass,scss}'",
"lint:css:fix": "yarn lint:css --fix",
"lint:ts": "eslint --ext .ts,.tsx --ignore-path ./.gitignore --max-warnings 0 '**/*.{ts,tsx}'",
"lint:ts:fix": "yarn lint:ts --fix",
"format": "prettier --ignore-path ./.gitignore --list-different '**/*.{css,html,js,json,jsx,less,md,scss,ts,tsx,vue,yaml,yml}'",
"format:fix": "yarn format --write",
"version": "yarn build",
"release": "np"
},
"dependencies": {
"@babel/runtime": "^7.26.0"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@tsconfig/recommended": "^1.0.8",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"np": "^10.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"postcss-import": "^16.1.0",
"postcss-preset-env": "^10.1.3",
"postcss-scss": "^4.0.9",
"prettier": "^3.4.2",
"rollup": "^4.29.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.83.0",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"browserslist": [
"defaults"
],
"eslintConfig": {
"root": true,
"extends": "eslint-config-airbnb-base",
"env": {
"browser": true
}
},
"stylelint": {
"extends": "stylelint-config-standard"
},
"prettier": "prettier-config-standard"
}