-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
54 lines (54 loc) · 1.76 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
{
"name": "copy-title-and-url-as-markdown",
"version": "2.0.0",
"description": "Quickly copy the title & url of current tab as Markdown style (`[title](url)`)",
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"postinstall": "cp -r node_modules/@salesforce-ux/design-system/assets public",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"zip": "bestzip dist.zip dist/*",
"lint": "eslint --ext .ts,.tsx src/**",
"release": "npm run lint && npm run build && standard-version",
"release:dry-run": "standard-version --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zaki-yama/copy-title-and-url-as-markdown.git"
},
"keywords": [],
"author": "Shingo Yamazaki <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zaki-yama/copy-title-and-url-as-markdown/issues"
},
"homepage": "https://github.com/zaki-yama/copy-title-and-url-as-markdown#readme",
"dependencies": {
"@salesforce-ux/design-system": "2.18.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-lightning-design-system": "5.2.5"
},
"devDependencies": {
"@crxjs/vite-plugin": "1.0.14",
"@cybozu/eslint-config": "17.0.3",
"@storybook/addon-essentials": "6.5.16",
"@storybook/builder-vite": "0.1.41",
"@storybook/react": "6.5.16",
"@storybook/testing-library": "0.0.13",
"@types/chrome": "0.0.267",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"@vitejs/plugin-react": "1.3.2",
"bestzip": "2.2.1",
"eslint": "8.35.0",
"standard-version": "9.5.0",
"typescript": "4.8.4",
"vite": "2.9.18",
"vitest": "0.23.4"
}
}