-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.25 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.25 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
{
"name": "typograf.github.io",
"description": "Web interface for Typograf",
"version": "1.0.0",
"author": {
"name": "Denis Seleznev",
"email": "hcodes@yandex.ru",
"url": "https://github.com/typograf/typograf.github.io/"
},
"private": true,
"homepage": "https://github.com/typograf/typograf.github.io/",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/typograf/typograf/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git://github.com/typograf/typograf.github.io.git"
},
"keywords": [
"typo",
"text",
"typograf",
"typographer",
"typography"
],
"engines": {
"node": ">= 16.0"
},
"devDependencies": {
"@babel/preset-env": "^7.28.6",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/diff": "^5.0.9",
"@types/throttle-debounce": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"autoprefixer": "^10.4.23",
"copy-text-to-clipboard": "^3.2.2",
"cssnano": "^7.1.2",
"diff": "^5.2.0",
"eslint": "^9.39.2",
"eyo-kernel": "^4.0.1",
"globals": "^17.1.0",
"js-beautify": "^1.15.4",
"lyam": "^3.2.1",
"postcss": "^8.5.6",
"postcss-import": "^16.1.1",
"postcss-inline-svg": "^6.0.0",
"postcss-nested": "^7.0.2",
"rollup": "^4.57.0",
"rollup-plugin-css-only": "^4.5.5",
"rollup-plugin-postcss": "^4.0.2",
"terser": "^5.46.0",
"throttle-debounce": "^5.0.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"typograf": "^7.6.0"
},
"scripts": {
"copy:dict": "cp ./node_modules/eyo-kernel/dictionary/safe.txt ./dist/eyo.txt",
"copy:html-beautify": "terser ./node_modules/js-beautify/js/lib/beautify-html.js > ./dist/html-beautify.1.15.4.js",
"test": "npm run eslint && npm run typecheck",
"eslint": "eslint .",
"typecheck": "tsc --noEmit -p tsconfig.json",
"build": "npm run copy:dict && npm run copy:html-beautify && rollup -c && node tools/index.mjs",
"start": "lsof -ti:8000 | xargs kill -9; python3 -m http.server 8000 & open http://localhost:8000"
}
}