-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
{
"name": "ctab-page",
"version": "1.0.0",
"description": "A web extension giving you a customizable new tab screen",
"keywords": [
"extension",
"newtab",
"dashboard"
],
"license": "MIT",
"bugs": "https://github.com/clanghout/CTab-Page/issues",
"repository": "github:clanghout/CTab-Page",
"author": "clanghout",
"contributors": [
"foresterre"
],
"files": [
"dist/"
],
"main": "dist/index.html",
"man": "README.md",
"scripts": {
"dev": "parcel src/index.html",
"start": "rm -rf dist/ && mkdir dist && node scripts/createSizeStyles.js && parcel src/index.html",
"build": "rm -rf dist/ && mkdir dist && node scripts/createSizeStyles.js && parcel build src/manifest.json",
"clean": "rm -rf dist/ && mkdir dist",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"big-text.js-patched": "^1.0.1",
"muuri": "^0.9.5",
"rome": "^10.0.4-beta",
"streamsaver": "2.0.6",
"vanilla-picker": "^2.12.1"
},
"devDependencies": {
"@types/node": "^18.8.5",
"parcel-bundler": "^1.12.4",
"parcel-plugin-web-extension": "^1.6.1",
"sass": "^1.55.0",
"typescript": "^4.8.4"
},
"private": true
}