-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.75 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
{
"name": "github-bookmark",
"version": "0.0.0",
"description": "A micro browser extension that saves a web page URL as a GitHub issue",
"main": "dist/index.js",
"module": "dist/index.cjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs --publicDir src/extension && tailwindcss -i src/extension/index.css -o dist/index.css",
"postbuild": "node scripts/clean-manifest.cjs",
"start": "npx nodemon",
"test": "jest",
"docs": "typedoc",
"docs:publish": "typedoc && gh-pagez -d docs -t true",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"release": "changeset",
"publish": "npm run build && ./scripts/release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freitzzz/github-bookmark.git"
},
"keywords": [
"typescript",
"prettier",
"eslint",
"jest",
"hot",
"reload",
"git",
"hooks",
"starter"
],
"author": "freitzzz",
"license": "none",
"bugs": {
"url": "https://github.com/freitzzz/github-bookmark/issues"
},
"homepage": "https://github.com/freitzzz/github-bookmark#readme",
"devDependencies": {
"@freitzzz/gh-pagez": "^5.0.1",
"@jest/globals": "^29.5.0",
"@types/chrome": "^0.0.237",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typedoc": "^0.24.6",
"typescript": "^5.0.4"
},
"dependencies": {
"@changesets/cli": "^2.26.2",
"rippleui": "^1.12.1"
}
}