-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
116 lines (116 loc) · 3.62 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@realness.online/web",
"version": "1.8.1",
"private": false,
"type": "module",
"keywords": [
"svg",
"computer-graphics",
"vector-graphics",
"Private",
"Realtime Graphics",
"animation",
"Social Network",
"potrace",
"trace",
"tracing",
"posterization"
],
"description": "When people search for 'outsider social network' they'll find realness online. The medium is the message",
"author": "Scott Fryxell <sfryxell@gmail.com>",
"scripts": {
"dev": "vite --host",
"dev:workers": "rollup -c workers.config.js --watch",
"build": "vite build",
"build:workers": "rollup -c workers.config.js",
"serve": "vite preview",
"serve:https": "serve dist",
"lint": "eslint . --fix",
"deploy": "npm run format && npm run build:workers && npm run build && firebase deploy --only hosting,storage -m $npm_package_version",
"format": "prettier . --write",
"format:check": "prettier . --check",
"release": "npm run release:gh && npm run release:npm && git tag v$npm_package_version",
"release:npm": "npm publish",
"release:gh": "gh release create $npm_package_version",
"prepare": "husky",
"docs": "jsdoc -c jsdoc.json",
"test": "vitest run --coverage",
"test:watch": "vitest watch",
"test:ui": "vitest --ui",
"type": "tsc --pretty",
"storage:fix-itemprop": "node scripts/fix-itemprop-value.js",
"storage:merge-statements": "node scripts/merge-statements.js",
"storage:compress": "node scripts/compress-files.js",
"storage:decompress": "node scripts/decompress-files.js",
"storage:upload": "node scripts/upload-compressed.js",
"storage:download": "node scripts/firebase-downloader.js",
"storage:serve": "node scripts/start-storage-server.js",
"storage:serve:stop": "nginx -s stop",
"storage:vectorize": "node scripts/vectorize-images.js"
},
"dependencies": {
"@davidmarkclements/hsl-to-hex": "1.0.2",
"@vueuse/core": "12.2.0",
"chalk": "^5.4.1",
"culori": "4.0.1",
"dotenv": "^16.4.7",
"exifreader": "4.26.0",
"firebase": "11.1.0",
"hsl-to-hex": "1.0.0",
"idb-keyval": "6.2.1",
"libphonenumber-js": "1.11.17",
"node-vibrant": "4.0.0",
"object-hash": "3.0.0",
"rgb-hex": "4.1.0",
"vue": "3.5.13",
"vue-router": "4.5.0"
},
"devDependencies": {
"@rollup/plugin-alias": "5.1.1",
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-node-resolve": "16.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@vitejs/plugin-vue": "5.2.1",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/eslint-plugin": "^1.1.22",
"@vitest/ui": "^2.1.8",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/test-utils": "^2.4.6",
"canvas": "^2.11.2",
"eslint": "9.17.0",
"eslint-plugin-compat": "^6.0.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-vue": "9.32.0",
"fake-indexeddb": "6.0.0",
"firebase-admin": "^13.0.2",
"happy-dom": "16.2.6",
"husky": "9.1.7",
"jsdoc": "^4.0.4",
"jsdom": "^25.0.1",
"mockdate": "3.0.5",
"pako": "2.1.0",
"prettier": "3.4.2",
"prettier-eslint": "16.3.0",
"rollup": "^4.29.1",
"rollup-plugin-analyzer": "4.0.0",
"stylus": "0.64.0",
"svgo": "3.3.2",
"typescript": "^5.3.3",
"vite": "6.0.6",
"vite-plugin-package-version": "1.1.0",
"vite-plugin-pwa": "0.21.1",
"vitest": "2.1.8",
"workbox-build": "7.3.0",
"workbox-window": "7.3.0"
},
"browserslist": [
">0.5%",
"not dead",
"not IE 11",
"not IE_Mob 11",
"not op_mini all",
"not ios_saf < 16"
],
"license": "UNLICENSED"
}