-
-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.77 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.77 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
{
"name": "css-text-portrait-builder",
"version": "1.2.0",
"type": "module",
"description": "A popular pure CSS text portrait builder for your loved ones.",
"source": "src/index.html",
"scripts": {
"clean:output": "rimraf dist",
"format:checkonly": "prettier . -c",
"format": "prettier . -w",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check": "pnpm lint && pnpm format:checkonly",
"stylefix": "pnpm format && pnpm lint:fix",
"dev": "pnpm clean:output && parcel src/index.html",
"build": "pnpm clean:output && parcel build src/index.html",
"build:export": "pnpm build --no-optimize --no-source-maps --no-scope-hoist",
"serve": "parcel serve src/index.html",
"serve:https": "parcel serve src/index.html --https",
"preview": "pnpm serve & pnpm lt --port 1234 > preview-link.txt",
"export": "pnpm build:export && node scripts/postbuild.js dist/index.html && prettier dist -w --ignore-path && echo Prettify done.\n && pnpm postexport",
"export:upload": "pnpm export && curl --silent -F \"file=@dist/export.zip\" https://file.io > .github/share.json && pnpm export:upload:getlink",
"export:upload:getlink": "node -pe 'JSON.parse(process.argv[1]).link' \"$(cat .github/share.json)\"",
"export:optimized": "pnpm build && node scripts/postbuild.js dist/index.html && pnpm postexport",
"postexport": "pnpm compress && echo \n\u001b[32m\u001b[1mExport complete.",
"compress": "cd dist/ && bestzip export.zip *"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WarenGonzaga/css-text-portrait-builder.git"
},
"keywords": [
"css",
"text",
"portrait",
"builder"
],
"author": "Waren Gonzaga",
"license": "MIT",
"bugs": {
"url": "https://github.com/WarenGonzaga/css-text-portrait-builder/issues"
},
"homepage": "https://github.com/WarenGonzaga/css-text-portrait-builder#readme",
"dependencies": {
"jsdom": "^29.0.1",
"normalize.css": "^8.0.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@parcel/transformer-sass": "^2.16.4",
"bestzip": "^2.2.1",
"eslint": "^9.26.0",
"eslint-config-google": "^0.14.0",
"localtunnel": "^2.0.2",
"parcel": "^2.16.4",
"prettier": "^2.8.4",
"rimraf": "^4.1.2"
},
"overrides": {
"axios": "1.14.0"
},
"pnpm": {
"overrides": {
"axios": "1.14.0",
"localtunnel>axios": "1.14.0",
"ajv@^6.12.4": "6.14.0",
"brace-expansion@^1.1.7": "1.1.13",
"brace-expansion@^2.0.1": "2.0.3",
"flatted@^3.2.9": "3.4.2",
"immutable@^5.0.2": "5.1.5",
"minimatch@^3.1.1": "3.1.5",
"minimatch@^3.1.2": "3.1.5",
"minimatch@^5.1.0": "5.1.9",
"minimatch@^8.0.2": "8.0.7",
"picomatch@^4.0.3": "4.0.4"
}
},
"packageManager": "pnpm@9.15.9"
}