-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.48 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
{
"name": "svelte-app",
"version": "1.3.0",
"description": "Store your tabs and access easily",
"author": "Krishna Suwal",
"license": "MIT",
"homepage": "https://github.com/krishna-suwal/link-memory-extension#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/krishna-suwal/link-memory-extension.git"
},
"bugs": {
"url": "https://github.com/krishna-suwal/link-memory-extension/issues"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"start": "yarn svelte:start",
"svelte:build": "rollup -c",
"svelte:dev": "rollup -c -w",
"svelte:start": "sirv public --no-clear",
"prepare:ext": "npx rimraf *.zip ./dist && node ./scripts/prepare.js",
"build": "yarn prepare:ext && yarn bundle",
"rebuild-logos": "node ./scripts/build-icons.js",
"bundle": "yarn bundle-edge && yarn bundle-chrome && yarn bundle-firefox",
"bundle-edge": "7z a -tzip link-memory-edge-extension.zip dist",
"bundle-chrome": "7z a -tzip link-memory-chrome-extension.zip dist",
"bundle-firefox": "web-ext -s ./dist/ -n link-memory-firefox-extension.zip -a . build --overwrite-dest",
"clean": "rimraf *.zip ./dist",
"lint": "eslint ./src",
"prettier": "prettier --check ./src ./scripts",
"check:code": "yarn lint && yarn prettier",
"release": "yarn install && yarn build && yarn bundle",
"check": "svelte-check --tsconfig ./tsconfig.json"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-typescript": "^8.0.0",
"@tsconfig/svelte": "^2.0.0",
"@types/chrome": "0.0.178",
"@types/lz-string": "1.3.34",
"@types/uuid": "8.3.4",
"babel-eslint": "10.1.0",
"dotenv": "16.0.0",
"eslint": "7.32.0",
"make-dir": "^3.1.0",
"node-sass": "7.0.1",
"prettier": "2.5.1",
"puppeteer": "13.3.2",
"rimraf": "^3.0.2",
"rollup": "^2.3.4",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-scss": "3.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"sharp": "^0.28.3",
"sirv-cli": "^1.0.0",
"svelte": "^3.0.0",
"svelte-check": "^2.0.0",
"svelte-preprocess": "^4.0.0",
"tslib": "^2.0.0",
"typescript": "^4.0.0",
"web-ext": "6.2.0"
},
"dependencies": {
"byte-length": "1.0.2",
"events": "3.3.0",
"lz-string": "1.4.4",
"query-string": "7.1.1",
"sass": "1.49.8",
"uuid": "^8.3.2"
}
}